The Ds\Sequence::capacity() function is an inbuilt function in PHP which is used to returns the current capacity of sequence. Syntax: int abstract public Ds\Sequence::capacity (… Read More
Tag Archives: PHP-function
The Ds\Sequence::apply() function is an inbuilt function in PHP which is used to updates all value of sequence by applying a callback function to each… Read More
The Ds\Map::union() function is an inbuilt function in PHP which is used to create a new map which contains the union of two maps. Syntax:… Read More
The Ds\Set::diff() function is an inbuilt function in PHP which is used to create a set which contains the elements of the first set which… Read More
The Ds\Map::reduce() function is an inbuilt function in PHP which is used to reduce the map to a single value by applying operations using the… Read More
The Ds\Set::xor() function is an inbuilt function in PHP which is used to create a new set which contains the value either in the first… Read More
The IntlChar::hasBinaryProperty() function is an inbuilt function in PHP which is used to checks a binary Unicode property for a code point. Syntax: bool IntlChar::hasBinaryProperty(… Read More
The Ds\Set::sorted() function is an inbuilt function in PHP which is used to return a sorted copy of given set. Syntax: Ds\Set public Ds\Set::sorted ([… Read More
The Ds\Set::filter() function is an inbuilt function in PHP which is used to create new set using filter function. Syntax: Ds\Set public Ds\Set::filter( $callback )… Read More
The Ds\Set::__construct() function is an inbuilt function in PHP which is used to create new instance of set. Syntax: Ds\Set::__construct( $values ) Parameters: This function… Read More
The Ds\Set::reduce() function is an inbuilt function in PHP which is used to reduce the set to a single value by applying operations using the… Read More
The Ds\Map::ksorted() function is an inbuilt function in PHP, which is used to returns a copy which is sorted by key. Syntax: Ds\Map public Ds\Map::ksorted… Read More
The Ds\Set::join() function is an inbuilt function in PHP which is used to join all values as string. Syntax: string public Ds\Set::join ([ string $glue… Read More
The Ds\Set::intersect() function is an inbuilt function in PHP which is used to create a new set which contains the intersection of two sets. Syntax:… Read More
The Ds\Map::xor() function is an inbuilt function in PHP which is used to create a new map which contains the value either in the first… Read More