Class: Bud::Choose
- Inherits:
-
ArgExemplary
- Object
- Agg
- ArgExemplary
- Bud::Choose
- Defined in:
- lib/bud/aggs.rb
Overview
:nodoc: all
Instance Method Summary (collapse)
Methods inherited from ArgExemplary
Methods inherited from Agg
Instance Method Details
- (Object) tie(the_state, val)
107 108 109 |
# File 'lib/bud/aggs.rb', line 107 def tie(the_state, val) false end |
- (Object) trans(the_state, val)
100 101 102 103 104 105 106 |
# File 'lib/bud/aggs.rb', line 100 def trans(the_state, val) if the_state.nil? return val, :replace else return the_state, :ignore end end |