Generic map for PHP

This package's canonical repository appears to be gone and the package has been frozen as a result.

1.1.3 2023-06-30 17:49 UTC

This package is auto-updated.

Last update: 2024-01-12 03:44:48 UTC


README

Very simple typed map class.

Includes IntCharMap and CharMap as examples. It is best to extend Olivebbs\Map\GenericMap for your uses.

Example

use Olivebbs\Map\GenericMap;
use Olivebbs\Map\Enum\ValueType;
use Olivebbs\Map\Enum\KeyType;

final class MyStringMap extends GenericMap 
{
    public function __construct(array $values)
    {
        parent::__construct(KeyType::STRING, ValueType::STRING);
        $this->map->putAll($values);
    }
}

or

use Olivebbs\Map\GenericMap;
use Olivebbs\Map\Enum\ValueType;
use Olivebbs\Map\Enum\KeyType;

$myIntMap = new GenericMap(KeyType::INT, ValueType::INT); 

Then use it.

$myIntMap[0] = 500;
unset($myIntMap[0]) // null