ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
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 25 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
Transformation[]$inTransformations
Returns
Transformation

Definition at line 44 of file Group.php.

44  : Transformation
45  {
46  return new Parallel($inTransformations);
47  }

◆ 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
Transformation[]$inTransformations
Returns
Transformation

Definition at line 33 of file Group.php.

33  : Transformation
34  {
35  return new Series($inTransformations);
36  }

The documentation for this class was generated from the following file: