File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -638,14 +638,14 @@ In a nutshell Elm operators are _functions_ that take two arguments.
638638|Operator|Description|Type hint|
639639|--------|-----------|----------|
640640|`&&`|logical and|`Bool -> Bool -> Bool`
641- |`| |`|logical or|`Bool -> Bool -> Bool`
641+ |`\|\ |`|logical or|`Bool -> Bool -> Bool`
642642|`not`|logical not|`Bool -> Bool`
643643
644644#### Function Composition
645645|Operator|Description|Type hint|
646646|--------|-----------|----------|
647- |`<|`|backward (pipe) function application `f <| x == f x`|`(a -> b) -> a -> b`
648- |`|>`|forward (pipe) function application `x |> f == f x`|`a -> (a -> b) -> b`
647+ |`<\ |`|backward (pipe) function application `f <\ | x == f x`|`(a -> b) -> a -> b`
648+ |`\ |>`|forward (pipe) function application `x \ |> f == f x`|`a -> (a -> b) -> b`
649649|`<<`|composes functions into one, arguments first applied to the function from the right side|`(b -> c) -> (a -> b) -> a -> c`
650650|`>>`|same as before except arguments first applied to the function from the left side|`(a -> b) -> (b -> c) -> a -> c`
651651
You can’t perform that action at this time.
0 commit comments