19 declare(strict_types=1);
    35         return new Series($inTransformations);
    46         return new Parallel($inTransformations);
 parallel(array $inTransformations)
Takes an array of transformations and performs each on the input value to form a tuple of the results...
 
series(array $inTransformations)
Takes an array of transformations and performs them one after another on the result of the previous t...