Ds\Set::reversed

(PECL ds >= 1.0.0)

Ds\Set::reversedReturns a reversed copy

Descrierea

public Ds\Set::reversed ( ) : Ds\Set

Returns a reversed copy of the set.

Parametri

Această funcție nu are parametri.

Valorile întoarse

A reversed copy of the set.

Notă:

The current instance is not affected.

Exemple

Example #1 Ds\Set::reversed() example

<?php
$set 
= new \Ds\Set(["a""b""c"]);

print_r($set->reversed());
print_r($set);
?>

Exemplul de mai sus va afișa ceva similar cu:

Ds\Set Object
(
    [0] => c
    [1] => b
    [2] => a
)
Ds\Set Object
(
    [0] => a
    [1] => b
    [2] => c
)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top