* 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)
* Destruct a Judy object. * @link https://php.net/manual/en/judy.destruct.php */ public function __destruct() {} /** * (PECL judy >= 0.1.1)
* Locate the Nth index present in the Judy array. * @link https://php.net/manual/en/judy.bycount.php * @param int $nth_index

Nth index to return. If nth_index equal 1, then it will return the first index in the array.

* @return int

Return the index at the given Nth position.

*/ public function byCount($nth_index) {} /** * (PECL judy >= 0.1.1)
* Count the number of elements in the Judy array. * @link https://php.net/manual/en/judy.count.php * @param int $index_start [optional]

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 int

Return the number of elements.

*/ public function count($index_start = 0, $index_end = -1) {} /** * (PECL judy >= 0.1.1)
* Search (inclusive) for the first index present that is equal to or greater than the passed Index. * @link https://php.net/manual/en/judy.first.php * @param mixed $index [optional]

The index can be an integer or a string corresponding to the index where to start the search.

* @return mixed

Return the corresponding index in the array.

*/ public function first($index = 0) {} /** * (PECL judy >= 0.1.1)
* Search (inclusive) for the first absent index that is equal to or greater than the passed Index. * @link https://php.net/manual/en/judy.firstempty.php * @param mixed $index [optional]

The index can be an integer or a string corresponding to the index where to start the search.

* @return mixed

Return the corresponding index in the array.

*/ public function firstEmpty($index = 0) {} /** * (PECL judy >= 0.1.1)
* Free the entire Judy array. * @link https://php.net/manual/en/judy.free.php */ public function free() {} /** * (PECL judy >= 0.1.1)
* Return an integer corresponding to the Judy type of the current object. * @link https://php.net/manual/en/judy.gettype.php * @return int

Return an integer corresponding to a Judy type.

*/ public function getType() {} /** * (PECL judy >= 0.1.1)
* Search (inclusive) for the last index present that is equal to or less than the passed Index. * @link https://php.net/manual/en/judy.last.php * @param int|string $index [optional]

The index can be an integer or a string corresponding to the index where to start the search.

* @return mixed

Return the corresponding index in the array.

*/ public function last($index = -1) {} /** * (PECL judy >= 0.1.1)
* Search (inclusive) for the last absent index that is equal to or less than the passed Index. * @link https://php.net/manual/en/judy.lastempty.php * @param int|string $index [optional]

The index can be an integer or a string corresponding to the index where to start the search.

* @return mixed

Return the corresponding index in the array.

*/ public function lastEmpty($index = -1) {} /** * (PECL judy >= 0.1.1)
* Return the memory used by the Judy array. * @link https://php.net/manual/en/judy.memoryusage.php * @return int

Return the memory used in bytes.

*/ public function memoryUsage() {} /** * (PECL judy >= 0.1.1)
* Search (exclusive) for the next index present that is greater than the passed Index. * @link https://php.net/manual/en/judy.next.php * @param mixed $index

The index can be an integer or a string corresponding to the index where to start the search.

* @return mixed

Return the corresponding index in the array.

*/ public function next($index) {} /** * (PECL judy >= 0.1.1)
* Search (exclusive) for the next absent index that is greater than the passed Index. * @link https://php.net/manual/en/judy.nextempty.php * @param int|string $index

The index can be an integer or a string corresponding to the index where to start the search.

* @return mixed

Return the corresponding index in the array.

*/ public function nextEmpty($index) {} /** * (PECL judy >= 0.1.1)
* Whether or not an offset exists. * @link https://php.net/manual/en/judy.offsetexists.php * @param mixed $offset

An offset to check for.

* @return bool

Returns TRUE on success or FALSE on failure.

*/ public function offsetExists($offset) {} /** * (PECL judy >= 0.1.1)
* Returns the value at specified offset. * @link https://php.net/manual/en/judy.offsetget.php * @param mixed $offset

An offset to check for.

* @return mixed

Can return all value types.

*/ public function offsetGet($offset) {} /** * (PECL judy >= 0.1.1)
* Assigns a value to the specified offset. * @link https://php.net/manual/en/judy.offsetset.php * @param mixed $offset

The offset to assign the value to.

* @param mixed $value

The value to set.

*/ public function offsetSet($offset, $value) {} /** * (PECL judy >= 0.1.1)
* Unsets an offset. * @link https://php.net/manual/en/judy.offsetunset.php * @param mixed $offset

The offset to assign the value to.

*/ public function offsetUnset($offset) {} /** * (PECL judy >= 0.1.1)
* Search (exclusive) for the previous index present that is less than the passed Index. * @link https://php.net/manual/en/judy.prev.php * @param mixed $index

The index can be an integer or a string corresponding to the index where to start the search.

* @return mixed

Return the corresponding index in the array.

*/ public function prev($index) {} /** * (PECL judy >= 0.1.1)
* Search (exclusive) for the previous index absent that is less than the passed Index. * @link https://php.net/manual/en/judy.prevempty.php * @param mixed $index

The index can be an integer or a string corresponding to the index where to start the search.

* @return mixed

Return the corresponding index in the array.

*/ public function prevEmpty($index) {} /** * (PECL judy >= 0.1.1)
* Count the number of elements in the Judy array.
* This method is an alias of const count. * @link https://php.net/manual/en/judy.size.php * @param int $index_start [optional]

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 int

Return the number of elements.

*/ public function size($index_start = 0, $index_end = -1) {} } // End of judy.