|
Ds\Deque::insertInserts values at a given index 説明
public void Ds\Deque::insert(int
$index , mixed ...$values )Inserts values into the deque at a given index. パラメータ
戻り値値を返しません。 エラー / 例外OutOfRangeException if the index is not valid. 例例1 Ds\Deque::insert example
上の例の出力は、 たとえば以下のようになります。 object(Ds\Deque)#1 (7) { [0]=> string(1) "a" [1]=> string(1) "b" [2]=> string(1) "c" [3]=> string(1) "d" [4]=> string(1) "e" [5]=> string(1) "f" [6]=> string(1) "g" } |