Ds\Set::contains

(PECL ds >= 1.0.0)

Ds\Set::containsDetermines if the set contains all values

说锟斤拷

public Ds\Set::contains ([ mixed $...values ] ) : bool

Determines if the set contains all values.

Note:

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.

Caution

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.

锟斤拷锟斤拷

Example #1 Ds\Set::contains() example

<?php
$set 
= new \Ds\Set([123]);

var_dump($set->contains(1));                // true
var_dump($set->contains(12));             // true
var_dump($set->contains(...[12]));        // true

var_dump($set->contains("1"));              // false
var_dump($set->contains(...[1234]));  // false

var_dump($set->contains(...[]));            // true
?>

锟斤拷锟斤拷锟斤拷锟教碉拷锟斤拷锟斤拷锟斤拷锟斤拷冢锟�

bool(true)
bool(true)
bool(true)
bool(false)
bool(false)
bool(true)