Class: Pione::Lang::FloatSequence

Inherits:
OrdinalSequence show all
Defined in:
lib/pione/lang/float.rb

Instance Method Summary collapse

Methods inherited from OrdinalSequence

#empty, #fold, fold, #fold2, fold2, #inspect, make_piece, #map, map, map2, #map2, map3, #map3, #map_by, of

Methods inherited from Sequence

#assertive?, #attribute, #concat, #each, #eval, index_type, inherited, piece_class, piece_classes, #push, #set_annotation_type, set_index_type, #update_pieces, void, #void?

Methods included from Callable

#call_pione_method

Methods included from Util::Positionable

#line_and_column, #pos, #set_source_position

Methods inherited from Expr

#eval, #eval!, inherited, pione_type, set_pione_type, #textize, #to_s

Instance Method Details

#valueObject



12
13
14
# File 'lib/pione/lang/float.rb', line 12

def value
  @value ||= pieces.inject(0.0){|f, piece| f + piece.value}
end