class Cascade::StatisticsStores::ArrayStore

Public Instance Methods

update(value) click to toggle source
# File lib/cascade/statistics_stores/array_store.rb, line 6
def update(value)
  @store << value
end

Private Instance Methods

initialize_value() click to toggle source
# File lib/cascade/statistics_stores/array_store.rb, line 12
def initialize_value
  []
end