Server IP : 184.154.167.98 / Your IP : 3.143.237.203 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/tampico1900/3rdparty/php-ds/php-ds/src/ |
Upload File : |
<?php namespace Ds; /** * Collection is the base interface which covers functionality common to all the * data structures in this library. It guarantees that all structures are * traversable, countable, and can be converted to json using json_encode(). * * @package Ds */ interface Collection extends \IteratorAggregate, \Countable, \JsonSerializable { /** * Removes all values from the collection. */ function clear(); /** * Returns the size of the collection. * * @return int */ function count(): int; /** * Returns a shallow copy of the collection. * * @return static a copy of the collection. */ function copy(); /** * Returns whether the collection is empty. * * This should be equivalent to a count of zero, but is not required. * Implementations should define what empty means in their own context. * * @return bool */ function isEmpty(): bool; /** * Returns an array representation of the collection. * * The format of the returned array is implementation-dependent. * Some implementations may throw an exception if an array representation * could not be created. * * @return array */ function toArray(): array; }