Class: ABI::String
Overview
class Bool
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
97 |
# File 'lib/abicoder/types.rb', line 97 def ==(another_type) another_type.kind_of?( String ); end |
#format ⇒ Object
96 |
# File 'lib/abicoder/types.rb', line 96 def format() 'string'; end |
#size ⇒ Object
note: dynamic (not known at compile-time)
95 |
# File 'lib/abicoder/types.rb', line 95 def size() nil; end |