struct CryStorage::DataType(T)
- CryStorage::DataType(T)
- Struct
- Value
- Object
Defined in:
table.crConstant Summary
-
BigInt =
DataType(Int64).new(12)
-
Boolean =
DataType(Bool).new(1)
-
Byte =
DataType(UInt8).new(2)
-
HugeInt =
DataType(Int128).new(13)
-
Integer =
DataType(Int32).new(11)
-
SmallInt =
DataType(Int16).new(10)
-
Text =
DataType(String).new(50)
Constructors
Class Method Summary
Instance Method Summary
-
#inspect
Returns an unambiguous and information-rich string representation of this object, typically intended for developers.
- #ref_class
- #to_io(io, format)
-
#to_s
Returns a nicely readable and concise string representation of this object, typically intended for users.
- #value
Constructor Detail
Class Method Detail
Instance Method Detail
def inspect
#
Description copied from class Object
Returns an unambiguous and information-rich string representation of this object, typically intended for developers.
This method should usually not be overridden. It delegates to
#inspect(IO)
which can be overridden for custom implementations.
Also see #to_s
.