(PECL ds >= 1.0.0)
Ds\Sequence::first — 返回序列中的第一个值
返回序列中的第一个值。
此函数没有参数。
序列中的第一个值。
如果为空,则为 UnderflowException。
示例 #1 Ds\Sequence::first() 示例
<?php$sequence = new \Ds\Vector([1, 2, 3]);var_dump($sequence->first());?>
以上示例将输出类似于以下内容
int(1)