/home/runner/work/klsn/klsn/_build/test/cover/eunit/klsn.html

1 -module(klsn).
2
3 -export([
4 ]).
5
6 -export_type([
7 'maybe'/1
8 , optnl/1
9 , binstr/0
10 ]).
11
12 %% A Maybe value — either {value, V} when a result is present or the
13 %% atom none when it is absent.
14 -type 'maybe'(Value) :: {value, Value} | none.
15
16 %% alias of maybe/1
17 -type optnl(Value) :: {value, Value} | none.
18
19 %% UTF-8 binary string alias re-exported from klsn_binstr for
20 %% convenience.
21 -type binstr() :: klsn_binstr:binstr().
22
Line Hits Source