Ds\Set::reversed

(PECL ds >= 1.0.0)

Ds\Set::reversedReturns a reversed copy

Opis

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

Returns a reversed copy of the set.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

A reversed copy of the set.

Informacja:

The current instance is not affected.

Przykłady

Przykład #1 Ds\Set::reversed() example

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

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

Powyższy przykład wyświetli coś podobnego do:

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