|
| series (array $inTransformations) |
| Takes an array of transformations and performs them one after another on the result of the previous transformation. More...
|
|
| parallel (array $inTransformations) |
| Takes an array of transformations and performs each on the input value to form a tuple of the results. More...
|
|
Definition at line 14 of file Group.php.
◆ parallel()
ILIAS\Refinery\In\Group::parallel |
( |
array |
$inTransformations | ) |
|
Takes an array of transformations and performs each on the input value to form a tuple of the results.
- Parameters
-
- Returns
- Transformation
Definition at line 36 of file Group.php.
36 : Transformation
37 {
38 return new Parallel($inTransformations);
39 }
◆ series()
ILIAS\Refinery\In\Group::series |
( |
array |
$inTransformations | ) |
|
Takes an array of transformations and performs them one after another on the result of the previous transformation.
- Parameters
-
- Returns
- Transformation
Definition at line 24 of file Group.php.
24 : Transformation
25 {
26 return new Series($inTransformations);
27 }
The documentation for this class was generated from the following file: