summaryrefslogtreecommitdiffstats
path: root/src/core/ephraim_util.erl
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2010-10-04 06:04:19 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2010-10-04 06:04:19 +0200
commitcabc0995c0e0964ecbef18470c6a483022879071 (patch)
treeea78fc03c11302f847b429fe417cdde412923613 /src/core/ephraim_util.erl
parent2b99ed6fd9cf84c405f426ea0914b233b1f40ef1 (diff)
downloadephraim-cabc0995c0e0964ecbef18470c6a483022879071.tar
ephraim-cabc0995c0e0964ecbef18470c6a483022879071.zip
Major reorganisation of the core, still unfinished...
Diffstat (limited to 'src/core/ephraim_util.erl')
-rw-r--r--src/core/ephraim_util.erl10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/ephraim_util.erl b/src/core/ephraim_util.erl
deleted file mode 100644
index 73cb7fc..0000000
--- a/src/core/ephraim_util.erl
+++ /dev/null
@@ -1,10 +0,0 @@
--module(ephraim_util).
--compile([debug_info, export_all]).
-
--spec send_all([term()], term()) -> term().
-send_all(Dest, Message) ->
- lists:foldr(fun erlang:send/2, Message, Dest).
-
--spec send_all_values(dict(), term()) -> term().
-send_all_values(Dest, Message) ->
- dict:fold(fun(_,Value,Msg) -> Value ! Msg end, Message, Dest).