class Tallboy::ComputedTable
- Tallboy::ComputedTable
- Reference
- Object
Included Modules
- Enumerable(Tallboy::ComputedRow)
Defined in:
tallboy/computed_table_builder/computed_table.crConstructors
Instance Method Summary
- #border : Tallboy::Border
-
#each(&)
Must yield this collection's elements to the block.
- #each_row(&)
-
#first
Returns the first element in the collection.
- #last
Constructor Detail
Instance Method Detail
def each(&)
#
Description copied from module Enumerable(Tallboy::ComputedRow)
Must yield this collection's elements to the block.
def first
#
Description copied from module Enumerable(Tallboy::ComputedRow)
Returns the first element in the collection. Raises Enumerable::EmptyError
if the collection is empty.
([1, 2, 3]).first # => 1
([] of Int32).first # raises Enumerable::EmptyError