class CsvHuman::Column

Attributes

key[R]
tag[R]

Public Class Methods

new( key=nil, tag=nil, list: false ) click to toggle source
# File lib/csvhuman/column.rb, line 108
def initialize( key=nil, tag=nil, list: false )
  @key  = key
  @tag  = tag
  @list = list
end

Public Instance Methods

list?() click to toggle source
# File lib/csvhuman/column.rb, line 116
def list?()    @list; end
tagged?() click to toggle source
# File lib/csvhuman/column.rb, line 115
def tagged?()  @tag.nil? == false; end