judy_type

(PECL judy >= 0.1.1) Return the type of a Judy array int judy_type ( Judy $array ) judy_type() return an integer corresponding to the Judy type of the specified Judy array. Parameters: array The Judy Array to test. Returns: Return an integer corresponding to a Judy type.

Judy::size

(PECL judy >= 0.1.1) Return the size of the current Judy array public void Judy::size ( void ) This method is an alias of Judy::count. Returns: Return an integer. This function is currently not documented; only its argument list is available.

Judy::prevEmpty

(PECL judy >= 0.1.1) Search for the previous absent index in the Judy array public int Judy::prevEmpty ( mixed $index ) Search (exclusive) for the previous index absent that is less than the passed Index. Parameters: index The index can be an integer or a string corresponding to the index where to start the search. Returns: Return the correspo

Judy::prev

(PECL judy >= 0.1.1) Search for the previous index in the Judy array public mixed Judy::prev ( mixed $index ) Search (exclusive) for the previous index present that is less than the passed Index. Parameters: index The index can be an integer or a string corresponding to the index where to start the search. Returns: Return the corresponding ind

Judy::offsetUnset

(PECL judy >= 0.1.1) Offset to unset public bool Judy::offsetUnset ( mixed $offset ) Unsets an offset. Parameters: offset The offset to unset. Returns: No value is returned.

Judy::offsetSet

(PECL judy >= 0.1.1) Offset to set public bool Judy::offsetSet ( mixed $offset, mixed $value ) Assigns a value to the specified offset. Parameters: offset The offset to assign the value to. value The value to set. Returns: No value is returned.

Judy::offsetGet

(PECL judy >= 0.1.1) Offset to retrieve public mixed Judy::offsetGet ( mixed $offset ) Returns the value at specified offset. Parameters: offset The offset to retrieve. Returns: Can return all value types.

Judy::offsetExists

(PECL judy >= 0.1.1) Whether a offset exists public bool Judy::offsetExists ( mixed $offset ) Whether or not an offset exists. Parameters: offset An offset to check for. Returns: Returns TRUE on success or FALSE on failure.

Judy::nextEmpty

(PECL judy >= 0.1.1) Search for the next absent index in the Judy array public int Judy::nextEmpty ( int $index ) Search (exclusive) for the next absent index that is greater than the passed Index. Parameters: index The index can be an integer or a string corresponding to the index where to start the search. Returns: Return the corresponding i

Judy::next

(PECL judy >= 0.1.1) Search for the next index in the Judy array public mixed Judy::next ( mixed $index ) Search (exclusive) for the next index present that is greater than the passed Index. Parameters: index The index can be an integer or a string corresponding to the index where to start the search. Returns: Return the corresponding index in