Creo que el operador de avance de tubería de F # ( |>
) debería frente a ( & ) en 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
Si no le gusta el &
operador ( ), puede personalizarlo como F # o Elixir:
(|>) :: a -> (a -> b) -> b
(|>) x f = f x
infixl 1 |>
ghci>> 5 |> factorial |> show
¿Por qué infixl 1 |>
? Ver el documento en función de datos (&)
infixl = infijo + asociatividad izquierda
infixr = infix + asociatividad derecha
(.)
( .
) significa composición de funciones. Significa (fg) (x) = f (g (x)) en matemáticas.
foo = negate . (*3)
// ouput -3
ghci>> foo 1
// ouput -15
ghci>> foo 5
es igual
// (1)
foo x = negate (x * 3)
o
// (2)
foo x = negate $ x * 3
El $
operador ( ) también se define en la función de datos ($) .
( .
) se utiliza para crear Hight Order Function
o closure in js
. Ver ejemplo:
// (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]
Vaya, Menos (código) es mejor.
Comparar |>
y.
ghci> 5 |> factorial |> show
// equals
ghci> (show . factorial) 5
// equals
ghci> show . factorial $ 5
Es la diferencia entre left —> right
y right —> left
. ⊙﹏⊙ |||
Humanización
|>
y &
es mejor 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
¿Cómo programar funcional en lenguaje orientado a objetos?
visite http://reactivex.io/
Soporte de TI :
- Java: RxJava
- JavaScript: RxJS
- C #: Rx.NET
- C # (Unidad): UniRx
- Scala: RxScala
- Clojure: RxClojure
- C ++: RxCpp
- Lua: RxLua
- Ruby: Rx.rb
- Python: RxPY
- Ir: RxGo
- Groovy: RxGroovy
- JRuby: RxJRuby
- Kotlin: RxKotlin
- Rápido: RxSwift
- PHP: RxPHP
- Elixir: reactivo
- Dardo: RxDart
&
es de Haskell|>
. Enterrado en lo profundo de este hilo y me tomó unos días descubrirlo. Lo uso mucho, porque naturalmente lees de izquierda a derecha para seguir tu código.