Packages

Handle culinary recipes and calculate their nutritional value (pre-alpha / WIP).

Current section

Files

Jump to
ex_kcal lib ex_kcal guards.ex
Raw

lib/ex_kcal/guards.ex

defmodule ExKcal.Guards do
defguard is_non_neg_number(value) when is_number(value) and value >= 0
end