Ds\Set::isEmpty
Ds\Set::isEmpty
(PECL ds >= 1.0.0)
Ds \ Set :: isEmpty - 返回该集是否为空
描述
public bool Ds\Set::isEmpty ( void )
返回该集合是否为空。
参数
该功能没有参数。
返回值
如果该集合为空,则返回TRUE,否则返回FALSE。
例子
示例#1 Ds \ Set :: isEmpty()示例
<?php
$a = new \Ds\Set([1, 2, 3]
$b = new \Ds\Set(
var_dump($a->isEmpty()
var_dump($b->isEmpty()
?>
上面的例子会输出类似于:
bool(false)
bool(true)
← Ds\Set::intersect
Ds\Set::join →