| 
|   | 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 25 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
 - 
  
    | Transformation[] | $inTransformations  | 
  
   
- Returns
 - Transformation 
 
Definition at line 44 of file Group.php.
   46         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
 - 
  
    | Transformation[] | $inTransformations  | 
  
   
- Returns
 - Transformation 
 
Definition at line 33 of file Group.php.
   35         return new Series($inTransformations);
  
 
 
The documentation for this class was generated from the following file: