class Record::Field

Attributes

index[R]
key[R]
type[R]

Public Class Methods

new( key, index, type ) click to toggle source
# File lib/records/record.rb, line 16
def initialize( key, index, type )
  @key    = key.to_sym  ## note: always symbol-ify (to_sym) key
  @index  = index
  @type   = type
end