rvv/collection

High-performance collection libraries

dev-master 2018-10-02 18:58 UTC

This package is auto-updated.

Last update: 2024-04-29 04:07:22 UTC


README

Some simple somewhat-efficient collection implementations for PHP.

Usage

<?php
use RVV\Collection;

$map = new Map();
$map->set('some key', 'an amazing value!');
$map->set(1, 'a key bound to 1');

var_dump($map->get('some key'));