This should be possible:
<?php
declare(strict_types=1);
use Fp4\PHP\ArrayList;
use function Fp4\PHP\Combinator\pipe;
$listA = [
'i1', 'i2', 'i3',
];
$listB = [
'f1', 'f2',
];
pipe(
ArrayList\bindable(),
ArrayList\bind(
a: $listA,
b: $listB,
),
);Reactions are currently unavailable
This should be possible: