module TableTransform::Util

Public Class Methods

get_col_index(col_name, data) click to toggle source
# File lib/table_transform/table.rb, line 6
def self.get_col_index(col_name, data)
  data[col_name] || (raise "No column with name '#{col_name}' exists")
end