GoLang Ds\Deque::copy

request it (280)
GoLang replacement for PHP's Ds\Deque::copy [edit | history]



Do you know a GoLang replacement for PHP's Ds\Deque::copy? Write it!

PHP Ds\Deque::copy

PHP original manual for Ds\Deque::copy [ show | php.net ]

Ds\Deque::copy

(PECL ds >= 1.0.0)

Ds\Deque::copyReturns a shallow copy of the deque

Description

public Ds\Deque Ds\Deque::copy ( void )

Returns a shallow copy of the deque.

Parameters

This function has no parameters.

Return Values

A shallow copy of the deque.

Examples

Example #1 Ds\Deque::copy() example

<?php
$a 
= new \Ds\Deque([123]);
$b $a->copy();

$b->push(4);

print_r($a);
print_r($b);
?>

The above example will output something similar to:

Ds\Deque Object
(
    [0] => 1
    [1] => 2
    [2] => 3
)
Ds\Deque Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
)