rvv/collection

High-performance collection libraries

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

This package is auto-updated.

Last update: 2025-03-01 00:13:27 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'));