| Class | ActiveWarehouse::Aggregate::DwarfAggregate::Cell |
| In: |
lib/active_warehouse/aggregate/dwarf_aggregate.rb
|
| Parent: | Object |
| child | [RW] | The child of the cell which will always be a node |
| key | [RW] | The cell key, which will always be a dimension id |
| node | [RW] | The node that this cell is a member of |
| value | [RW] | The value of the cell which will only be non-nil in the cells that appear in nodes in the last dimension |
# File lib/active_warehouse/aggregate/dwarf_aggregate.rb, line 266
266: def initialize(key, value=nil)
267: @key = key
268: @value = value
269: end