ILIAS  release_7 Revision v7.30-3-g800a261c036
ILIAS\Refinery\In\Group Class Reference
+ Collaboration diagram for ILIAS\Refinery\In\Group:

Public Member Functions

 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...
 

Detailed Description

Definition at line 14 of file Group.php.

Member Function Documentation

◆ 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
array$inTransformations
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
array$inTransformations
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: