rvv/collection

High-performance collection libraries

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/rvv/collection

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

This package is auto-updated.

Last update: 2025-09-29 02:07:21 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'));