Current section
Files
Jump to
Current section
Files
lib/peep/buckets/powers_of_ten.ex
defmodule Ogle.Buckets.PowersOfTen do
@moduledoc """
An implementation of `Ogle.Buckets`, using `Ogle.Buckets.Custom`.
"""
use Ogle.Buckets.Custom,
buckets: [
10,
100,
1_000,
10_000,
100_000,
1_000_000,
10_000_000,
100_000_000,
1_000_000_000
]
end