R. Eric Wheeler c8de7fb826 | ||
---|---|---|
src/Olivebbs/Map | ||
tests | ||
.gitignore | ||
.gitlab-ci.yml | ||
.php_cs.dist | ||
LICENSE | ||
README.md | ||
composer.json | ||
composer.lock | ||
header.txt | ||
phpunit.xml |
README.md
olivebbs/map
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;
final class MyStringMap extends GenericMap
{
public function __construct(array $values)
{
parent::__construct(GenericMap::STRING, GenericMap::STRING);
$this->map->putAll($values);
}
}
or
use Olivebbs\Map\GenericMap;
$myIntMap = new GenericMap(GenericMap::INT, GenericMap::INT);
Then use it.
$myIntMap[0] = 500;
unset($myIntMap[0]) // null