home
/
code
/
hope.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d10156b
)
Add specs to hope_kv_list helpers.
author
Siraaj Khandkar
<siraaj@khandkar.net>
Tue, 12 Aug 2014 20:58:53 +0000
(16:58 -0400)
committer
Siraaj Khandkar
<siraaj@khandkar.net>
Tue, 12 Aug 2014 20:58:53 +0000
(16:58 -0400)
src/hope_kv_list.erl
patch
|
blob
|
blame
|
history
diff --git
a/src/hope_kv_list.erl
b/src/hope_kv_list.erl
index
468c8d8
..
3ca9d07
100644
(file)
--- a/
src/hope_kv_list.erl
+++ b/
src/hope_kv_list.erl
@@
-79,8
+79,15
@@
of_kv_list(List) ->
%% Helpers
%% ============================================================================
+-spec lift_map(F) ->
+ G
+ when F :: fun(( K, V1 ) -> V2)
+ , G :: fun(({K, V1}) -> V2)
+ .
lift_map(F) ->
fun (X) -> apply_map(F, X) end.
+-spec apply_map(fun((K, V1) -> V2), {K, V1}) ->
+ V2.
apply_map(F, {K, V}) ->
F(K, V).
This page took
0.030305 seconds
and
4
git commands to generate.