|
Ds\Vector::containsDetermines if the vector contains given values. Description
public bool Ds\Vector::contains
([ mixed
$...values
] )Determines if the vector contains all values. Parameters
Return Values
ExamplesExample #1 Ds\Vector::contains example
<?php The above example will output something similar to: bool(true) bool(true) bool(false) bool(true) bool(true) bool(false) bool(true) |