Class: Type::I64
Constant Summary collapse
- MAX =
2**64 - 1
- MIN =
0
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
6 |
# File 'lib/rlang/parser/ext/type.rb', line 6 def self.signed?; true; end |
.wasm_type ⇒ Object
10 |
# File 'lib/rlang/parser/ext/type.rb', line 10 def self.wasm_type; 'i64'; end |