Class: DeltaLake::Field
- Inherits:
-
Object
- Object
- DeltaLake::Field
- Defined in:
- lib/deltalake/field.rb
Instance Method Summary collapse
Instance Method Details
#inspect ⇒ Object
3 4 5 6 7 8 9 10 |
# File 'lib/deltalake/field.rb', line 3 def inspect attributes = { name: name, type: type, nullable: nullable } "<#{self.class.name} #{attributes.map { |k, v| "#{k}=#{v.inspect}" }.join(", ")}>" end |