mundanity / collection

一个基于PHP的简单集合。

v1.0.0 2018-02-07 14:17 UTC

This package is not auto-updated.

Last update: 2024-09-29 05:41:49 UTC


README

Build Status Scrutinizer Code Quality

一个基于PHP的简单集合。

使用方法

对于基本使用,可以使用提供的 CollectionKeyedCollection 基类。每个类都有一个可变对应类。

<?php

$collection = new Collection([1, 2, 3]);
$collection->has(2); // true

$mutable = MutableCollection::fromCollection($collection);
$mutable->remove(2);
$mutable->has(2); // false