php collection
1.0.0
Some simple somewhat-efficient collection implementations for PHP.
<?php
use RVVCollection;
$map = new Map();
$map->set('some key', 'an amazing value!');
$map->set(1, 'a key bound to 1');
var_dump($map->get('some key'));