Class: Type::F64
Constant Summary collapse
- MAX =
1.7976931348623158E308
Class Method Summary collapse
- .signed? ⇒ Boolean
-
.size ⇒ Object
size in bytes.
- .wasm_type ⇒ Object
Instance Method Summary collapse
-
#size ⇒ Object
size in bytes.
- #wasm_type ⇒ Object
Methods inherited from Numeric
Class Method Details
.signed? ⇒ Boolean
49 |
# File 'lib/rlang/parser/ext/type.rb', line 49 def self.signed?; true; end |
.size ⇒ Object
size in bytes
52 |
# File 'lib/rlang/parser/ext/type.rb', line 52 def self.size; 8; end |
.wasm_type ⇒ Object
53 |
# File 'lib/rlang/parser/ext/type.rb', line 53 def self.wasm_type; 'f64'; end |