aboutsummaryrefslogtreecommitdiff
path: root/gen/src/gleam@function.erl
diff options
context:
space:
mode:
Diffstat (limited to 'gen/src/gleam@function.erl')
-rw-r--r--gen/src/gleam@function.erl13
1 files changed, 0 insertions, 13 deletions
diff --git a/gen/src/gleam@function.erl b/gen/src/gleam@function.erl
deleted file mode 100644
index b376ed0..0000000
--- a/gen/src/gleam@function.erl
+++ /dev/null
@@ -1,13 +0,0 @@
--module(gleam@function).
--compile(no_auto_import).
-
--export([compose/2, flip/1, identity/1]).
-
-compose(Fun1, Fun2) ->
- fun(A) -> Fun2(Fun1(A)) end.
-
-flip(Fun) ->
- fun(B, A) -> Fun(A, B) end.
-
-identity(X) ->
- X.