Class: ArrowFormat::FloatingPointType
- Inherits:
-
NumberType
- Object
- Type
- PrimitiveType
- NumberType
- ArrowFormat::FloatingPointType
- Defined in:
- lib/arrow-format/type.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#precision ⇒ Object
readonly
Returns the value of attribute precision.
Instance Method Summary collapse
-
#initialize(precision) ⇒ FloatingPointType
constructor
A new instance of FloatingPointType.
- #to_flatbuffers ⇒ Object
Methods inherited from Type
Constructor Details
#initialize(precision) ⇒ FloatingPointType
Returns a new instance of FloatingPointType.
284 285 286 287 |
# File 'lib/arrow-format/type.rb', line 284 def initialize(precision) super() @precision = precision end |
Instance Attribute Details
#precision ⇒ Object (readonly)
Returns the value of attribute precision.
283 284 285 |
# File 'lib/arrow-format/type.rb', line 283 def precision @precision end |