Method: TableGen#columns
- Defined in:
- lib/tablegen.rb
#columns(*indexes) {|Column column| ... } ⇒ Object
Shorthand to #column: Yields specified columns.
79 80 81 82 83 |
# File 'lib/tablegen.rb', line 79 def columns(*indexes, &block) indexes.each {|index| column index, &block } end |