rvv/collection

High-performance collection libraries

Maintainers

Package info

github.com/rvanvelzen/php-collection

pkg:composer/rvv/collection

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 4

Open Issues: 0

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

This package is auto-updated.

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