class AllocationStats::AllocationsProxy

def at_least(count)

Parameters:
  • count (Fixnum) -- the minimum number of Allocations for each group to
def at_least(count)
  @mappers << Proc.new do |allocations|
    allocations.delete_if { |key,value| value.size < count }
  end
  self
end