Current section

Files

Jump to
sprocket src docs@utils@common.erl
Raw

src/docs@utils@common.erl

-module(docs@utils@common).
-compile([no_auto_import, nowarn_unused_vars]).
-export([maybe/2]).
-spec maybe(boolean(), LQU) -> gleam@option:option(LQU).
maybe(Condition, Element) ->
case Condition of
true ->
{some, Element};
false ->
none
end.