* Construct a new Judy object. A Judy object can be accessed like a PHP Array. * @link https://php.net/manual/en/judy.construct.php * @param int $judy_type
The Judy type to be used.
*/ public function __construct($judy_type) {} /** * (PECL judy >= 0.1.1)Nth index to return. If nth_index equal 1, then it will return the first index in the array.
* @return intReturn the index at the given Nth position.
*/ public function byCount($nth_index) {} /** * (PECL judy >= 0.1.1)Start counting from the given index. Default is first index.
* @param int $index_end [optional]Stop counting when reaching this index. Default is last index.
* @return intReturn the number of elements.
*/ public function count($index_start = 0, $index_end = -1) {} /** * (PECL judy >= 0.1.1)The index can be an integer or a string corresponding to the index where to start the search.
* @return mixedReturn the corresponding index in the array.
*/ public function first($index = 0) {} /** * (PECL judy >= 0.1.1)The index can be an integer or a string corresponding to the index where to start the search.
* @return mixedReturn the corresponding index in the array.
*/ public function firstEmpty($index = 0) {} /** * (PECL judy >= 0.1.1)Return an integer corresponding to a Judy type.
*/ public function getType() {} /** * (PECL judy >= 0.1.1)The index can be an integer or a string corresponding to the index where to start the search.
* @return mixedReturn the corresponding index in the array.
*/ public function last($index = -1) {} /** * (PECL judy >= 0.1.1)The index can be an integer or a string corresponding to the index where to start the search.
* @return mixedReturn the corresponding index in the array.
*/ public function lastEmpty($index = -1) {} /** * (PECL judy >= 0.1.1)Return the memory used in bytes.
*/ public function memoryUsage() {} /** * (PECL judy >= 0.1.1)The index can be an integer or a string corresponding to the index where to start the search.
* @return mixedReturn the corresponding index in the array.
*/ public function next($index) {} /** * (PECL judy >= 0.1.1)The index can be an integer or a string corresponding to the index where to start the search.
* @return mixedReturn the corresponding index in the array.
*/ public function nextEmpty($index) {} /** * (PECL judy >= 0.1.1)An offset to check for.
* @return boolReturns TRUE on success or FALSE on failure.
*/ public function offsetExists($offset) {} /** * (PECL judy >= 0.1.1)An offset to check for.
* @return mixedCan return all value types.
*/ public function offsetGet($offset) {} /** * (PECL judy >= 0.1.1)The offset to assign the value to.
* @param mixed $valueThe value to set.
*/ public function offsetSet($offset, $value) {} /** * (PECL judy >= 0.1.1)The offset to assign the value to.
*/ public function offsetUnset($offset) {} /** * (PECL judy >= 0.1.1)The index can be an integer or a string corresponding to the index where to start the search.
* @return mixedReturn the corresponding index in the array.
*/ public function prev($index) {} /** * (PECL judy >= 0.1.1)The index can be an integer or a string corresponding to the index where to start the search.
* @return mixedReturn the corresponding index in the array.
*/ public function prevEmpty($index) {} /** * (PECL judy >= 0.1.1)Start counting from the given index. Default is first index.
* @param int $index_end [optional]Stop counting when reaching this index. Default is last index.
* @return intReturn the number of elements.
*/ public function size($index_start = 0, $index_end = -1) {} } // End of judy.