Acho que o operador de pipe forward do F # ( |>
) deve vs ( & ) em haskell.
// pipe operator example in haskell
factorial :: (Eq a, Num a) => a -> a
factorial x =
case x of
1 -> 1
_ -> x * factorial (x-1)
// terminal
ghic >> 5 & factorial & show
Se você não gosta do &
operador ( ), pode personalizá-lo como F # ou Elixir:
(|>) :: a -> (a -> b) -> b
(|>) x f = f x
infixl 1 |>
ghci>> 5 |> factorial |> show
Porque infixl 1 |>
? Veja o documento em Data-Function (&)
infixl = infix + associatividade à esquerda
infixr = infix + associatividade direita
(.)
( .
) significa composição da função. Significa (fg) (x) = f (g (x)) em matemática.
foo = negate . (*3)
// ouput -3
ghci>> foo 1
// ouput -15
ghci>> foo 5
é igual a
// (1)
foo x = negate (x * 3)
ou
// (2)
foo x = negate $ x * 3
O $
operador ( ) também é definido em Data-Function ($) .
( .
) é usado para criar Hight Order Function
ou closure in js
. Consultar exemplo:
// (1) use lamda expression to create a Hight Order Function
ghci> map (\x -> negate (abs x)) [5,-3,-6,7,-3,2,-19,24]
[-5,-3,-6,-7,-3,-2,-19,-24]
// (2) use . operator to create a Hight Order Function
ghci> map (negate . abs) [5,-3,-6,7,-3,2,-19,24]
[-5,-3,-6,-7,-3,-2,-19,-24]
Uau, menos (código) é melhor.
Compare |>
e.
ghci> 5 |> factorial |> show
// equals
ghci> (show . factorial) 5
// equals
ghci> show . factorial $ 5
É a diferença entre left —> right
e right —> left
. ⊙﹏⊙ |||
Humanização
|>
e &
é melhor que.
Porque
ghci> sum (replicate 5 (max 6.7 8.9))
// equals
ghci> 8.9 & max 6.7 & replicate 5 & sum
// equals
ghci> 8.9 |> max 6.7 |> replicate 5 |> sum
// equals
ghci> (sum . replicate 5 . max 6.7) 8.9
// equals
ghci> sum . replicate 5 . max 6.7 $ 8.9
Como fazer programação funcional em linguagem orientada a objetos?
visite http://reactivex.io/
Suporta:
- Java: RxJava
- JavaScript: RxJS
- C #: Rx.NET
- C # (unidade): UniRx
- Scala: RxScala
- Clojure: RxClojure
- C ++: RxCpp
- Lua: RxLua
- Ruby: Rx.rb
- Python: RxPY
- Go: RxGo
- Groovy: RxGroovy
- JRuby: RxJRuby
- Kotlin: RxKotlin
- Swift: RxSwift
- PHP: RxPHP
- Elixir: reaxivo
- Dart: RxDart
&
é de Haskell|>
. Enterrado profundamente neste tópico e levei alguns dias para descobrir. Eu uso muito, porque você naturalmente lê da esquerda para a direita para seguir o seu código.