immutable

#Set

A set is an unordered list of unique elements.

#::of()

use Innmind\Immutable\Set;

/** @var Set */
Set::of(1, 2, 3, $etc);

#::defer()

This named constructor is for advanced use cases where you want the data of your set to be loaded upon use only and not initialisation.

An example for such a use case is a set of log lines coming from a file:

$set = Set::defer((function() {
    yield from readSomeFile('apache.log');
})());

The method ask a generator that will provide the elements. Once the elements are loaded they are kept in memory so you can run multiple operations on it without loading the file twice.

Warning beware of the case where the source you read the elements is not altered before the first use of the set.

#::lazy()

This is similar to ::defer() with the exception that the elements are not kept in memory but reloaded upon each use.

$set = Set::lazy(function() {
    yield from readSomeFile('apache.log');
});

Warning since the elements are reloaded each time the immutability responsability is up to you because the source may change or if you generate objects it will generate new objects each time (so if you make strict comparison it will fail).

#::mixed()

This is a shortcut for ::of(mixed ...$mixed).

#::ints()

This is a shortcut for ::of(int ...$ints).

#::floats()

This is a shortcut for ::of(float ...$floats).

#::strings()

This is a shortcut for ::of(string ...$strings).

#::objects()

This is a shortcut for ::of(object ...$objects).

#->__invoke()

Augment the set with a new element. If the element is already in the set nothing changes.

$set = Set::ints(1);
$set = ($set)(2)(1);
$set->equals(Set::ints(1, 2));

#->add()

This is an alias for ->__invoke().

#->size()

This returns the number of elements in the set.

$set = Set::ints(1, 4, 6);
$set->size(); // 3

#->count()

This is an alias for ->size(), but you can also use the PHP function \count if you prefer.

$set = Set::ints(1, 4, 6);
$set->count(); // 3
\count($set); // 3

#->intersect()

Create a new set with the elements that are also in the other set.

$set = Set::ints(1, 2, 3)->intersect(Set::ints(2, 3, 4));
$set->equals(Set::ints(2, 3)); // true

#->contains()

Check if the element is present in the set.

$set = Set::ints(1, 42, 3);
$set->contains(2); // false
$set->contains(42); // true
$set->contains('42'); // false but psalm will raise an error

#->remove()

Create a new set without the specified element.

$set = Set::ints(1, 2, 3);
$set->remove(2)->equals(Set::ints(1, 3)); // true

#->diff()

This method will return a new set containing the elements that are not present in the other set.

$set = Set::ints(1, 4, 6)->diff(Set::ints(1, 3, 6));
$set->equals(Set::ints(4)); // true

#->equals()

Check if two sets are identical.

Set::ints(1, 2)->equals(Set::ints(2, 1)); // true
Set::ints()->equals(Set::strings()); // false but psalm will raise an error

#->filter()

Removes elements from the set that don't match the given predicate.

$set = Set::ints(1, 2, 3, 4)->filter(fn($i) => $i % 2 === 0);
$set->equals(Set::ints(2, 4));

#->keep()

This is similar to ->filter() with the advantage of psalm understanding the type in the new Set.

use Innmind\Immutable\Predicate\Instance;

$set = Set::of(null, new \stdClass, 'foo')->keep(Instance::of('stdClass'));
$set; // Set

#->exclude()

Removes elements from the set that match the given predicate.

$set = Set::ints(1, 2, 3, 4)->filter(fn($i) => $i % 2 === 0);
$set->equals(Set::ints(1, 3));

#->foreach()

Use this method to call a function for each element of the set. Since this structure is immutable it returns a SideEffect object, as its name suggest it is the only place acceptable to create side effects.

$sideEffect = Set::strings('hello', 'world')->foreach(function(string $string): void {
    echo $string.' ';
});

#->groupBy()

This will create multiples sets with elements regrouped under the same key computed by the given function.

$urls = Set::strings(
    'http://example.com',
    'http://example.com/foo',
    'https://example.com',
    'ftp://example.com',
);
/** @var Innmind\Immutable\Map> */
$map = $urls->groupBy(fn(string $url): string => \parse_url($url)['scheme']);
$map
    ->get('http')
    ->match(
        static fn($group) => $group,
        static fn() => Set::strings(),
    )
    ->equals(Set::strings('http://example.com', 'http://example.com/foo')); // true
$map
    ->get('https')
    ->match(
        static fn($group) => $group,
        static fn() => Set::strings(),
    )
    ->equals(Set::strings('https://example.com')); // true
$map
    ->get('ftp')
    ->match(
        static fn($group) => $group,
        static fn() => Set::strings(),
    )
    ->equals(Set::strings('ftp://example.com')); // true

#->map()

Create a new set with the exact same number of elements but modified by the given function.

$ints = Set::ints(1, 2, 3);
$squares = $ints->map(fn($i) => $i**2);
$squares->equals(Set::ints(1, 4, 9)); // true

#->flatMap()

This is similar to ->map() except that instead of returning a new value it returns a new set for each value, and each new set is merged together.

$ints = Set::ints(1, 2, 3);
$squares = $ints->flatMap(fn($i) => Set::of($i, $i**2));
$squares->equals(Set::ints(1, 2, 4, 3, 9)); // true

#->partition()

This method is similar to ->groupBy() method but the map keys are always booleans. The difference is that here the 2 keys are always present whereas with ->groupBy() it will depend on the original set.

$set = Set::ints(1, 2, 3);
/** @var Map> */
$map = $set->partition(fn($int) => $int % 2 === 0);
$map
    ->get(true)
    ->match(
        static fn($partition) => $partition,
        static fn() => Set::ints(),
    )
    ->equals(Set::ints(2)); // true
$map
    ->get(false)
    ->match(
        static fn($partition) => $partition,
        static fn() => Set::ints(),
    )
    ->equals(Set::ints(1, 3)); // true

#->sort()

It will transform the set into an ordered sequence.

$sequence = Set::ints(1, 4, 2, 3)->sort(fn($a, $b) => $a <=> $b);
$sequence->equals(Sequence::ints(1, 2, 3, 4));

#->merge()

Create a new set with all the elements from both sets.

$set = Set::ints(1, 2, 3)->merge(Set::ints(4, 2, 3));
$set->equals(Set::ints(1, 2, 3, 4));

#->reduce()

Iteratively compute a value for all the elements in the set.

$set = Set::ints(1, 2, 3, 4);
$sum = $set->reduce(0, fn($sum, $int) => $sum + $int);
$sum; // 10

#->clear()

Create an empty new set of the same type. (To avoid to redeclare the types manually in a docblock)

$set = Set::ints(1);
$set->clear()->size(); // 0

#->empty()

Tells whether there is at least one element or not.

Set::ints()->empty(); // true
Set::ints(1)->empty(); // false

#->toList()

It returns a new array containing all the elements of the set.

#->find()

Returns the first element that matches the predicate.

$set = Set::ints(2, 4, 6, 8, 9, 10, 11);
/** @var Maybe $firstOdd */
$firstOdd = $set->find(fn($i) => $i % 2 === 1);
$firstOdd; // could contain 9 or 11, because there is no ordering

#->matches()

Check if all the elements of the set matches the given predicate.

$isOdd = fn($i) => $i % 2 === 1;
Set::ints(1, 3, 5, 7)->matches($isOdd); // true
Set::ints(1, 3, 4, 5, 7)->matches($isOdd); // false

#->any()

Check if at least one element of the set matches the given predicate.

$isOdd = fn($i) => $i % 2 === 1;
Set::ints(1, 3, 5, 7)->any($isOdd); // true
Set::ints(1, 3, 4, 5, 7)->any($isOdd); // true
Set::ints(2, 4, 6, 8)->any($isOdd); // false

#->safeguard()

This method allows you to make sure all values conforms to an assertion before continuing using the set.

$uniqueFiles = Set::of(
    new \ArrayObject(['name' => 'a']),
    new \ArrayObject(['name' => 'b']),
    new \ArrayObject(['name' => 'c']),
    new \ArrayObject(['name' => 'a']),
)
    ->safeguard(
        Set::strings()
        static fn(Set $names, string $value) => match ($names->contains($value['name'])) {
            true => throw new \LogicException("{$value['name']} is already used"),
            false => $names->add($value['name']),
        },
    );

This example will throw because there is the value a twice.

This method is especially useful for deferred or lazy sets because it allows to make sure all values conforms after this call whithout unwrapping the whole set first. The downside of this lazy evaluation is that some operations may start before reaching a non conforming value (example below).

Set::lazy(function() {
    yield new \ArrayObject(['name' => 'a']);
    yield new \ArrayObject(['name' => 'b']);
    yield new \ArrayObject(['name' => 'c']);
    yield new \ArrayObject(['name' => 'a']);
})
    ->safeguard(
        Set::strings()
        static fn(Set $names, string $value) => match ($names->contains($value['name'])) {
            true => throw new \LogicException("{$value['name']} is already used"),
            false => $names->add($value['name']),
        },
    )
    ->foreach(static fn($value) => print($value['name']));

This example will print a, b and c before throwing an exception because of the second a. Use this method carefully.

#->memoize()

This method will load all the values in memory. This is useful only for a deferred or lazy Set, the other set will be unaffected.

$set = Set::lazy(function() {
    $stream = \fopen('some-file', 'r');
    while (!\feof($stream)) {
        yield \fgets($stream);
    }
})
    ->map(static fn($line) => \strtoupper($line)) // still no line loaded here
    ->memoize(); // load all lines and apply strtoupper on each