aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gleam/function.gleam12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gleam/function.gleam b/src/gleam/function.gleam
index 35423c0..41ccf67 100644
--- a/src/gleam/function.gleam
+++ b/src/gleam/function.gleam
@@ -1,11 +1,11 @@
-// Takes a function that takes two arguments and returns a new function that
-// takes the same two arguments, but in reverse order.
-pub fn flip(fun: fn(a, b) -> c) -> fn(b, a) -> c {
- fn(b, a) { fun(a, b) }
-}
-
// Takes two functions and chains them together to form one function that takes
// the input from the first and returns the output of the second.
pub fn compose(fun1: fn(a) -> b, fun2: fn(b) -> c) -> fn(a) -> c {
fn(a) { fun1(a) |> fun2 }
}
+
+// Takes a function that takes two arguments and returns a new function that
+// takes the same two arguments, but in reverse order.
+pub fn flip(fun: fn(a, b) -> c) -> fn(b, a) -> c {
+ fn(b, a) { fun(a, b) }
+}