gasrate v0.3.0 Gasrate View Source
Documentation for Gasrate.
Link to this section Summary
Link to this section Functions
Link to this function
fetch_avg_rates(state) View Source
Fetch Rates.
Examples
iex> Gasrate.fetch_avg_rates("AZ")
%{diesel: 2.89, mid: 2.669, premium: 2.877, regular: 2.447}
Link to this function
fetch_avg_rates!(state) View Source
Fetch Rates.
Examples
iex> Gasrate.fetch_avg_rates!("AZ")
{:ok, %{diesel: 2.89, mid: 2.669, premium: 2.877, regular: 2.447}}
Link to this function
fetch_national_avg()
View Source
fetch_national_avg()
View Source
fetch_national_avg() :: {:ok, float()}
fetch_national_avg() :: {:ok, float()}
Fetch National Avg.
Examples
iex> Gasrate.fetch_national_avg
{:ok, 2.273}
Link to this function
fetch_national_avg!() View Source
Fetch National Avg.
Examples
iex> Gasrate.fetch_national_avg!
2.273