Module: Enumerable

Included in:
Buffer::Array, Matrix, Native::Array, Vector
Defined in:
opal/stdlib/json.rb,
opal/stdlib/await.rb

Overview

BUG: Enumerable must come before Array, otherwise it overrides #to_json this is due to how modules are implemented.

Instance Method Summary collapse

Instance Method Details

#each_async(&block) ⇒ Object



32
33
34
# File 'opal/stdlib/await.rb', line 32

def each_async(&block)
  PromiseV2.when(*map(&block)).await
end

#to_jsonObject



128
129
130
# File 'opal/stdlib/json.rb', line 128

def to_json
  to_a.to_json
end