class Tarantool16::SchemaSpace::Field

Attributes

name[RW]

Public Class Methods

new(name, pos, type) click to toggle source
# File lib/tarantool16/schema.rb, line 219
def initialize(name, pos, type)
  @name = name
  @pos = pos
  @type = type
end

Public Instance Methods

to_s() click to toggle source
# File lib/tarantool16/schema.rb, line 225
def to_s
  "<Fields #{@name}@#{pos}>"
end