Str\starts_with($str, 'b'), ], [ [['bar', 'baz'], ['foo', 'qux']], new Collection\Map(['foo', 'bar', 'baz', 'qux']), fn (string $str) => Str\starts_with($str, 'b'), ], [ [[], []], [], fn ($_) => false, ], [ [[], ['foo', 'bar', 'baz', 'qux']], new Collection\Map(['foo', 'bar', 'baz', 'qux']), fn (string $str) => false, ], [ [['foo', 'bar', 'baz', 'qux'], []], new Collection\Map(['foo', 'bar', 'baz', 'qux']), fn (string $str) => true, ], ]; } }