Class: ABI::Bool
Overview
class Uint
Instance Method Summary collapse
- #==(another_type) ⇒ Object
- #format ⇒ Object
-
#size ⇒ Object
note: always uses 32 bytes (with padding).
Methods inherited from Type
Instance Method Details
#==(another_type) ⇒ Object
91 |
# File 'lib/abicoder/types.rb', line 91 def ==(another_type) another_type.kind_of?( Bool ); end |
#format ⇒ Object
90 |
# File 'lib/abicoder/types.rb', line 90 def format() 'bool'; end |
#size ⇒ Object
note: always uses 32 bytes (with padding)
89 |
# File 'lib/abicoder/types.rb', line 89 def size() 32; end |