We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
on
1 parent a707ae9 commit 5a3a000Copy full SHA for 5a3a000
Operators.swift
@@ -33,6 +33,15 @@ infix operator |> {
33
precedence 0
34
}
35
36
+/// On | Given a "combining" function and a function that converts arguments to the target of the
37
+/// combiner, returns a function that applies the right hand side to two arguments, then runs both
38
+/// results through the combiner.
39
+infix operator |*| {
40
+ associativity left
41
+ precedence 100
42
+}
43
+
44
45
/// MARK: Control.*
46
47
/// Fmap | Maps a function over the value encapsulated by a functor.
0 commit comments