|
| 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.
38 return new Parallel($inTransformations);
◆ 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.
26 return new Series($inTransformations);
The documentation for this class was generated from the following file: