Ds\Set::contains
(PECL ds >= 1.0.0)
Ds\Set::contains — Determines if the set contains all values.
Описание
Determines if the set contains all values.
Замечание:
Values of type object are supported. If an object implements Ds\Hashable, equality will be determined by the object's
equals
function. If an object does not implement Ds\Hashable, objects must be references to the same instance to be considered equal.
All comparisons are strict (type and value).
Список параметров
-
values
-
Values to check.
Возвращаемые значения
FALSE
if any of the provided values
are not in the
set, TRUE
otherwise.
Примеры
Пример #1 Ds\Set::contains() example
<?php
$set = new \Ds\Set([1, 2, 3]);
var_dump($set->contains(1)); // true
var_dump($set->contains(1, 2)); // true
var_dump($set->contains(...[1, 2])); // true
var_dump($set->contains("1")); // false
var_dump($set->contains(...[1, 2, 3, 4])); // false
var_dump($set->contains(...[])); // true
?>
Результатом выполнения данного примера будет что-то подобное:
bool(true) bool(true) bool(true) bool(false) bool(false) bool(true)
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения, относящиеся к переменным и типам
- Data Structures
- Ds\Set::add
- Ds\Set::allocate
- Ds\Set::capacity
- Ds\Set::clear
- Ds\Set::__construct
- Ds\Set::contains
- Ds\Set::copy
- Ds\Set::count
- Ds\Set::diff
- Ds\Set::filter
- Ds\Set::first
- Ds\Set::get
- Ds\Set::intersect
- Ds\Set::isEmpty
- Ds\Set::join
- Ds\Set::jsonSerialize
- Ds\Set::last
- Ds\Set::merge
- Ds\Set::reduce
- Ds\Set::remove
- Ds\Set::reverse
- Ds\Set::reversed
- Ds\Set::slice
- Ds\Set::sort
- Ds\Set::sorted
- Ds\Set::sum
- Ds\Set::toArray
- Ds\Set::union
- Ds\Set::xor
Коментарии
404 Not Found