Class: ABI::Bytes
Overview
class Address
Instance Method Summary collapse
- #==(another_type) ⇒ Object
- #format ⇒ Object
-
#size ⇒ Object
note: dynamic (not known at compile-time).
Methods inherited from Type
Instance Method Details
#==(another_type) ⇒ Object
49 |
# File 'lib/abicoder/types.rb', line 49 def ==(another_type) another_type.kind_of?( Bytes ); end |
#format ⇒ Object
48 |
# File 'lib/abicoder/types.rb', line 48 def format() 'bytes'; end |
#size ⇒ Object
note: dynamic (not known at compile-time)
47 |
# File 'lib/abicoder/types.rb', line 47 def size() nil; end |