Je pense que l'opérateur pipe forward de F # ( |>
) devrait vs ( & ) dans 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 vous n'aimez pas l' &
opérateur ( ), vous pouvez le personnaliser comme F # ou Elixir:
(|>) :: a -> (a -> b) -> b
(|>) x f = f x
infixl 1 |>
ghci>> 5 |> factorial |> show
Pourquoi infixl 1 |>
? Voir la doc dans Data-Function (&)
infixl = infixe + associativité gauche
infixr = infix + associativité droite
(.)
( .
) signifie composition de fonction. Cela signifie (fg) (x) = f (g (x)) en mathématiques.
foo = negate . (*3)
// ouput -3
ghci>> foo 1
// ouput -15
ghci>> foo 5
c'est égal
// (1)
foo x = negate (x * 3)
ou
// (2)
foo x = negate $ x * 3
L' $
opérateur ( ) est également défini dans Data-Function ($) .
( .
) est utilisé pour créer Hight Order Function
ou closure in js
. Voir exemple:
// (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]
Wow, Less (code) c'est mieux.
Comparez |>
et.
ghci> 5 |> factorial |> show
// equals
ghci> (show . factorial) 5
// equals
ghci> show . factorial $ 5
C'est la différence entre left —> right
et right —> left
. ⊙﹏⊙ |||
Humanisation
|>
et &
c'est mieux que.
car
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
Comment la programmation fonctionnelle en langage orienté objet?
veuillez visiter http://reactivex.io/
Support Informatique :
- Java: RxJava
- JavaScript: RxJS
- C #: Rx.NET
- C # (Unity): UniRx
- Scala: RxScala
- Clojure: RxClojure
- C ++: RxCpp
- Lua: RxLua
- Rubis: Rx.rb
- Python: RxPY
- Aller: RxGo
- Groovy: RxGroovy
- JRuby: RxJRuby
- Kotlin: RxKotlin
- Swift: RxSwift
- PHP: RxPHP
- Elixir: réactif
- Fléchette: RxDart
&
c'est celle de Haskell|>
. Enterré profondément dans ce fil et m'a pris quelques jours à découvrir. Je l'utilise beaucoup, car vous lisez naturellement de gauche à droite pour suivre votre code.