Ds\Deque::first

(PECL ds >= 1.0.0)

Ds\Deque::first返回双端队列中的第一个值

说明

public Ds\Deque::first(): mixed

返回双端队列中的第一个值。

参数

此函数没有参数。

返回值

双端队列中的第一个值。

错误/异常

UnderflowException 如果为空。

示例

示例 #1 Ds\Deque::first() 示例

<?php
$deque
= new \Ds\Deque([1, 2, 3]);
var_dump($deque->first());
?>

上面的示例将输出类似于以下内容

int(1)
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top