Skip to content

Commit

Permalink
Merge pull request #28 from m-2k/patch-2
Browse files Browse the repository at this point in the history
Add fold/6 helper for singleton-storage
  • Loading branch information
5HT committed Mar 11, 2016
2 parents f0e7cc3 + 9fb2bf3 commit 0d6a552
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/kvs.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ add(Table) -> add (Table, #kvs{mod=?DBA}).
all(Table) -> all (Table, #kvs{mod=?DBA}).
put(Table) -> put (Table, #kvs{mod=?DBA}).
link(Table) -> link (Table, #kvs{mod=?DBA}).
fold(Fun,Acc,T,S,C,D) -> fold (Fun,Acc,T,S,C,D,#kvs{mod=?DBA}).
traversal(T,S,C,D) -> traversal(T,S,C,D, #kvs{mod=?DBA}).
info(T) -> info (T, #kvs{mod=?DBA}).
start() -> start (#kvs{mod=?DBA}).
Expand Down

0 comments on commit 0d6a552

Please sign in to comment.