Class: CLValue
- Inherits:
-
Object
- Object
- CLValue
- Defined in:
- lib/types/cl_value.rb
Direct Known Subclasses
CLAccountHash, CLAny, CLBool, CLByteArray, CLKey, CLList, CLMap, CLOption, CLPublicKey, CLResult, CLString, CLTuple, CLURef, CLUnit, CLi32, CLi64, CLu128, CLu256, CLu32, CLu512, CLu64, CLu8
Instance Method Summary collapse
-
#initialize(bytes = nil, cl_type = nil, parsed = nil) ⇒ CLValue
constructor
A new instance of CLValue.
Constructor Details
#initialize(bytes = nil, cl_type = nil, parsed = nil) ⇒ CLValue
Returns a new instance of CLValue.
5 6 7 8 9 |
# File 'lib/types/cl_value.rb', line 5 def initialize(bytes = nil, cl_type = nil, parsed = nil) @bytes = bytes @cl_type = cl_type @parsed = parsed end |