diff --git a/_en/functions/andThen.md b/_en/functions/andThen.md index 1b0f9256..ea08a94c 100644 --- a/_en/functions/andThen.md +++ b/_en/functions/andThen.md @@ -9,3 +9,6 @@ name: andThen `andThen` creates an anonymous function that accepts a value and returns the result of applying this function first and then `g` to that value. @include [figure.html source="images/andThen.svg" desc="Diagram of the andThen function"] + +Both `andThen` and [`compose`](./compose) are used to combine other input functions. +They do the same job but each one swaps the order the other function applies the input functions. diff --git a/_en/functions/compose.md b/_en/functions/compose.md index 3f73348f..6efbf2e3 100644 --- a/_en/functions/compose.md +++ b/_en/functions/compose.md @@ -9,3 +9,6 @@ name: compose `compose` creates an anonymous function that accepts a value and returns the result of applying the function `g` first and then this function to that value. @include [figure.html source="images/compose.svg" desc="Diagram of the compose function"] + +Both [`andThen`](./andThen) and `compose` are used to combine other input functions. +They do the same job but each one swaps the order the other function applies the input functions. diff --git a/_es/functions/andThen.md b/_es/functions/andThen.md index 89c5d0f5..af1559b0 100644 --- a/_es/functions/andThen.md +++ b/_es/functions/andThen.md @@ -9,3 +9,6 @@ name: andThen `andThen` crea una función anónima que acepta un valor y devuelve el resultado de aplicar a este valor esta función primero y luego `g`. @include [figure.html source="../images/andThen.svg" desc="Diagrama de la función andThen"] + +Tanto `andThen` como [`compose`](./compose) se utilizan para combinar otras funciones de entrada. +Hacen el mismo trabajo pero cada uno intercambia el orden en que la otra función aplica las funciones de entrada. diff --git a/_es/functions/compose.md b/_es/functions/compose.md index 2b66158a..a19c106f 100644 --- a/_es/functions/compose.md +++ b/_es/functions/compose.md @@ -9,3 +9,6 @@ name: compose `compose` crea una función anónima que acepta un valor y devuelve el resultado de aplicar la función `g` primero y luego esta función a dicho valor. @include [figure.html source="../images/compose.svg" desc="Diagrama de la función compose"] + +Tanto [`andThen`](./andThen) como `compose` se utilizan para combinar otras funciones de entrada. +Hacen el mismo trabajo pero cada uno intercambia el orden en que la otra función aplica las funciones de entrada. diff --git a/_ja/functions/andThen.md b/_ja/functions/andThen.md index 9fa0c4eb..8ddaf725 100644 --- a/_ja/functions/andThen.md +++ b/_ja/functions/andThen.md @@ -9,3 +9,6 @@ name: andThen `andThen` は匿名関数を作成します。その関数は、受け取った値にまずこの関数を適用し、次にその値に `g` を適用した結果を返します。 @include [figure.html source="../images/andThen.svg" desc="関数 andThen の図"] + +`andThen` と [`compose`](./compose) は他の入力関数を合成するのに使われます。 +どちらも同じ働きですが、入力関数を他の関数と結合する順序がお互い異なります。 diff --git a/_ja/functions/compose.md b/_ja/functions/compose.md index 564ceafc..f03276aa 100644 --- a/_ja/functions/compose.md +++ b/_ja/functions/compose.md @@ -9,3 +9,6 @@ name: compose `compose` は匿名関数を作成します。その関数は、受け取った値に `g` を適用し、次にその値にこの関数を適用した結果を返します。 @include [figure.html source="../images/compose.svg" desc="関数 compose の図"] + +[`andThen`](./andThen) と `compose` は他の入力関数を合成するのに使われます。 +どちらも同じ働きですが、入力関数を他の関数と結合する順序がお互い異なります。