Judy::memoryUsage

(PECL judy >= 0.1.1) Return the memory used by the Judy array public int Judy::memoryUsage ( void ) Return the memory used by the Judy array. Returns: Return the memory used in bytes.

Judy::lastEmpty

(PECL judy >= 0.1.1) Search for the last absent index in the Judy array public int Judy::lastEmpty ([ int $index = -1 ] ) Search (inclusive) for the last absent index that is equal to or 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 t

Judy::last

(PECL judy >= 0.1.1) Search for the last index in the Judy array public void Judy::last ([ string $index ] ) Search (inclusive) for the last index present that is equal to or 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 correspon

Judy::getType

(PECL judy >= 0.1.1) Return the type of the current Judy array public int Judy::getType ( void ) Return an integer corresponding to the Judy type of the current object. Returns: Return an integer corresponding to a Judy type.

Judy::free

(PECL judy >= 0.1.1) Free the entire Judy array public int Judy::free ( void ) Free the entire Judy array. Returns: This function is currently not documented; only its argument list is available.

Judy::firstEmpty

(PECL judy >= 0.1.1) Search for the first absent index in the Judy array public int Judy::firstEmpty ([ mixed $index = 0 ] ) Search (inclusive) for the first absent index that is equal to or 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: R

Judy::first

(PECL judy >= 0.1.1) Search for the first index in the Judy array public mixed Judy::first ([ mixed $index ] ) Search (inclusive) for the first index present that is equal to or 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 corr

Judy::__destruct

(PECL judy >= 0.1.1) Destruct a Judy object public void Judy::__destruct ( void ) Destruct a Judy object. Returns:

Judy::count

(PECL judy >= 0.1.1) Count the number of elements in the Judy array public int Judy::count ([ int $index_start = 0 [, int $index_end = -1 ]] ) Count the number of elements in the Judy array. Parameters: index_start Start counting from the given index. Default is first index. index_end Stop counting when reaching this index. Default

Judy::__construct

(PECL judy >= 0.1.1) Construct a new Judy object public Judy::__construct ( int $judy_type ) Construct a new Judy object. A Judy object can be accessed like a PHP Array. Parameters: judy_type The Judy type to be used. Returns: Return the new Judy instance.