(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)
Ds\Pair::clear — Removes all values.
Removes all values from the pair.
この関数にはパラメータはありません。
値を返しません。
例1 Ds\Pair::clear() example
<?php
$pair = new \Ds\Pair("a", 1);
print_r($pair);
$pair->clear();
print_r($pair);
?>
上の例の出力は、 たとえば以下のようになります。
Ds\Pair Object ( [0] => 1 [1] => 2 [2] => 3 ) Ds\Pair Object ( )