Class: Type::UI64
Constant Summary collapse
- MAX =
2**63 - 1
- MIN =
-2**63
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
16 |
# File 'lib/rlang/parser/ext/type.rb', line 16 def self.signed?; false; end |
.size ⇒ Object
size in bytes
18 |
# File 'lib/rlang/parser/ext/type.rb', line 18 def self.size; 8; end |
.wasm_type ⇒ Object
20 |
# File 'lib/rlang/parser/ext/type.rb', line 20 def self.wasm_type; 'i64'; end |