Update line breaks to a more consistent style.
[hope.git] / src / hope_result.erl
... / ...
CommitLineData
1-module(hope_result).
2
3
4-export_type(
5 [ t/2
6 ]).
7
8-export(
9 [ pipe/2
10 ]).
11
12
13-type t(A, B) ::
14 {ok, A}
15 | {error, B}
16 .
17
18
19pipe([] , X) -> X;
20pipe([F|Fs], X) ->
21 case F(X)
22 of {error, _}=E -> E
23 ; {ok, Y} -> pipe(Fs, Y)
24 end.
This page took 0.02267 seconds and 4 git commands to generate.