From c9f9fd9fe0125caedf1bf7a7f462326777094da5 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 14 Feb 2022 07:04:24 +0100 Subject: update to 0.12.0 --- PHPINFO | 2 +- REFLECTION | 612 ++++++++++++++++++++++++++++++++++++++++++++++------- php-pecl-teds.spec | 5 +- 3 files changed, 537 insertions(+), 82 deletions(-) diff --git a/PHPINFO b/PHPINFO index b68e6bf..0a00202 100644 --- a/PHPINFO +++ b/PHPINFO @@ -2,4 +2,4 @@ teds teds support => enabled -teds version => 0.11.0 +teds version => 0.12.0 diff --git a/REFLECTION b/REFLECTION index 629b04c..33dcd80 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #99 teds version 0.11.0 ] { +Extension [ extension #99 teds version 0.12.0 ] { - Functions { Function [ function Teds\any ] { @@ -99,8 +99,263 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - - Classes [15] { - Class [ final class Teds\Deque implements IteratorAggregate, Traversable, Countable, JsonSerializable, ArrayAccess ] { + - Classes [18] { + Interface [ interface Teds\Values extends Traversable, Countable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ abstract public method values ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ abstract public method isEmpty ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ abstract public method contains ] { + + - Parameters [1] { + Parameter #0 [ mixed $value ] + } + - Return [ bool ] + } + + Method [ abstract public method count ] { + + - Parameters [0] { + } + } + } + } + + Interface [ interface Teds\Collection extends Teds\Values, Countable, Traversable, ArrayAccess ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [10] { + Method [ abstract public method toArray ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ abstract public method containsKey ] { + + - Parameters [1] { + Parameter #0 [ mixed $value ] + } + - Return [ bool ] + } + + Method [ abstract public method values ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ abstract public method isEmpty ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ abstract public method contains ] { + + - Parameters [1] { + Parameter #0 [ mixed $value ] + } + - Return [ bool ] + } + + Method [ abstract public method count ] { + + - Parameters [0] { + } + } + + Method [ abstract public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + } + + Method [ abstract public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + } + + Method [ abstract public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ mixed $offset ] + Parameter #1 [ mixed $value ] + } + } + + Method [ abstract public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + } + } + } + + Interface [ interface Teds\ListInterface extends Teds\Collection, ArrayAccess, Traversable, Countable, Teds\Values ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [14] { + Method [ abstract public method get ] { + + - Parameters [1] { + Parameter #0 [ int $offset ] + } + - Return [ mixed ] + } + + Method [ abstract public method set ] { + + - Parameters [2] { + Parameter #0 [ int $offset ] + Parameter #1 [ mixed $value ] + } + - Return [ void ] + } + + Method [ abstract public method push ] { + + - Parameters [1] { + Parameter #0 [ mixed ...$values ] + } + - Return [ void ] + } + + Method [ abstract public method pop ] { + + - Parameters [0] { + } + - Return [ mixed ] + } + + Method [ abstract public method toArray ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ abstract public method containsKey ] { + + - Parameters [1] { + Parameter #0 [ mixed $value ] + } + - Return [ bool ] + } + + Method [ abstract public method values ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ abstract public method isEmpty ] { + + - Parameters [0] { + } + - Return [ bool ] + } + + Method [ abstract public method contains ] { + + - Parameters [1] { + Parameter #0 [ mixed $value ] + } + - Return [ bool ] + } + + Method [ abstract public method count ] { + + - Parameters [0] { + } + } + + Method [ abstract public method offsetExists ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + } + + Method [ abstract public method offsetGet ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + } + + Method [ abstract public method offsetSet ] { + + - Parameters [2] { + Parameter #0 [ mixed $offset ] + Parameter #1 [ mixed $value ] + } + } + + Method [ abstract public method offsetUnset ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + } + } + } + + Class [ final class Teds\Deque implements IteratorAggregate, Traversable, Teds\ListInterface, Teds\Values, Countable, ArrayAccess, Teds\Collection, JsonSerializable ] { - Constants [0] { } @@ -121,7 +376,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [24] { + - Methods [26] { Method [ public method __construct ] { - Parameters [1] { @@ -143,7 +398,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -172,7 +427,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method push ] { + Method [ public method push ] { - Parameters [1] { Parameter #0 [ mixed ...$values ] @@ -188,7 +443,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method pop ] { + Method [ public method pop ] { - Parameters [0] { } @@ -216,14 +471,21 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ mixed ] } - Method [ public method toArray ] { + Method [ public method toArray ] { - Parameters [0] { } - Return [ array ] } - Method [ public method get ] { + Method [ public method values ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method get ] { - Parameters [1] { Parameter #0 [ int $offset ] @@ -231,7 +493,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ mixed ] } - Method [ public method set ] { + Method [ public method set ] { - Parameters [2] { Parameter #0 [ int $offset ] @@ -256,6 +518,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } + Method [ public method containsKey ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + - Return [ bool ] + } + Method [ public method offsetSet ] { - Parameters [2] { @@ -281,7 +551,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ ?int ] } - Method [ public method contains ] { + Method [ public method contains ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -305,7 +575,7 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - Class [ final class Teds\ImmutableKeyValueSequence implements IteratorAggregate, Traversable, Countable, JsonSerializable ] { + Class [ final class Teds\ImmutableKeyValueSequence implements IteratorAggregate, Traversable, Teds\Values, Countable, JsonSerializable ] { - Constants [0] { } @@ -334,7 +604,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [16] { + - Methods [17] { Method [ public method __construct ] { - Parameters [1] { @@ -356,7 +626,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -392,7 +662,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ array ] } - Method [ public method values ] { + Method [ public method values ] { - Parameters [0] { } @@ -447,6 +717,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } + Method [ public method contains ] { + + - Parameters [1] { + Parameter #0 [ mixed $value ] + } + - Return [ bool ] + } + Method [ public method jsonSerialize ] { - Parameters [0] { @@ -456,7 +734,7 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - Class [ final class Teds\ImmutableSequence implements IteratorAggregate, Traversable, Countable, JsonSerializable, ArrayAccess ] { + Class [ final class Teds\ImmutableSequence implements IteratorAggregate, Traversable, Teds\Collection, ArrayAccess, Countable, Teds\Values, JsonSerializable ] { - Constants [0] { } @@ -477,7 +755,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [17] { + - Methods [19] { Method [ public method __construct ] { - Parameters [1] { @@ -499,7 +777,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -521,7 +799,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method toArray ] { + Method [ public method toArray ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method values ] { - Parameters [0] { } @@ -552,6 +837,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } + Method [ public method containsKey ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + - Return [ bool ] + } + Method [ public method offsetSet ] { - Parameters [2] { @@ -577,7 +870,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ ?int ] } - Method [ public method contains ] { + Method [ public method contains ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -610,7 +903,7 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - Class [ final class Teds\IntVector implements IteratorAggregate, Traversable, Countable, JsonSerializable, ArrayAccess ] { + Class [ final class Teds\IntVector implements IteratorAggregate, Traversable, Teds\ListInterface, Teds\Values, Countable, ArrayAccess, Teds\Collection, JsonSerializable ] { - Constants [0] { } @@ -631,7 +924,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [19] { + - Methods [23] { Method [ public method __construct ] { - Parameters [1] { @@ -653,7 +946,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -682,7 +975,15 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method push ] { + Method [ public method push ] { + + - Parameters [1] { + Parameter #0 [ mixed ...$values ] + } + - Return [ void ] + } + + Method [ public method pushInts ] { - Parameters [1] { Parameter #0 [ int ...$values ] @@ -690,21 +991,28 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method pop ] { + Method [ public method pop ] { - Parameters [0] { } - Return [ int ] } - Method [ public method toArray ] { + Method [ public method toArray ] { - Parameters [0] { } - Return [ array ] } - Method [ public method get ] { + Method [ public method values ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method get ] { - Parameters [1] { Parameter #0 [ int $offset ] @@ -712,7 +1020,16 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method set ] { + Method [ public method set ] { + + - Parameters [2] { + Parameter #0 [ int $offset ] + Parameter #1 [ mixed $value ] + } + - Return [ void ] + } + + Method [ public method setInt ] { - Parameters [2] { Parameter #0 [ int $offset ] @@ -737,6 +1054,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } + Method [ public method containsKey ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + - Return [ bool ] + } + Method [ public method offsetSet ] { - Parameters [2] { @@ -762,10 +1087,10 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ ?int ] } - Method [ public method contains ] { + Method [ public method contains ] { - Parameters [1] { - Parameter #0 [ int $value ] + Parameter #0 [ mixed $value ] } - Return [ bool ] } @@ -808,7 +1133,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [24] { + - Methods [25] { Method [ public method __construct ] { - Parameters [1] { @@ -977,6 +1302,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } + Method [ public method contains ] { + + - Parameters [1] { + Parameter #0 [ mixed $value ] + } + - Return [ bool ] + } + Method [ public method shrinkToFit ] { - Parameters [0] { @@ -993,7 +1326,7 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - Class [ final class Teds\LowMemoryVector implements IteratorAggregate, Traversable, Countable, JsonSerializable, ArrayAccess ] { + Class [ final class Teds\LowMemoryVector implements IteratorAggregate, Traversable, Teds\ListInterface, Teds\Values, Countable, ArrayAccess, Teds\Collection, JsonSerializable ] { - Constants [0] { } @@ -1014,7 +1347,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [19] { + - Methods [21] { Method [ public method __construct ] { - Parameters [1] { @@ -1036,7 +1369,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -1065,7 +1398,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method push ] { + Method [ public method push ] { - Parameters [1] { Parameter #0 [ mixed ...$values ] @@ -1073,21 +1406,28 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method pop ] { + Method [ public method pop ] { - Parameters [0] { } - Return [ mixed ] } - Method [ public method toArray ] { + Method [ public method toArray ] { - Parameters [0] { } - Return [ array ] } - Method [ public method get ] { + Method [ public method values ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method get ] { - Parameters [1] { Parameter #0 [ int $offset ] @@ -1095,7 +1435,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ mixed ] } - Method [ public method set ] { + Method [ public method set ] { - Parameters [2] { Parameter #0 [ int $offset ] @@ -1120,6 +1460,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } + Method [ public method containsKey ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + - Return [ bool ] + } + Method [ public method offsetSet ] { - Parameters [2] { @@ -1145,7 +1493,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ ?int ] } - Method [ public method contains ] { + Method [ public method contains ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -1162,7 +1510,7 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - Class [ final class Teds\SortedStrictMap implements IteratorAggregate, Traversable, Countable, JsonSerializable, ArrayAccess ] { + Class [ final class Teds\SortedStrictMap implements IteratorAggregate, Traversable, Teds\Collection, ArrayAccess, Countable, Teds\Values, JsonSerializable ] { - Constants [0] { } @@ -1191,7 +1539,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [26] { + - Methods [28] { Method [ public method __construct ] { - Parameters [1] { @@ -1213,7 +1561,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -1234,6 +1582,13 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ array ] } + Method [ public method toArray ] { + + - Parameters [0] { + } + - Return [ array ] + } + Method [ public method __serialize ] { - Parameters [0] { @@ -1249,7 +1604,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method values ] { + Method [ public method values ] { - Parameters [0] { } @@ -1347,7 +1702,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ mixed ] } - Method [ public method containsValue ] { + Method [ public method containsValue ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -1355,7 +1710,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } - Method [ public method containsKey ] { + Method [ public method contains ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -1363,6 +1718,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } + Method [ public method containsKey ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Return [ bool ] + } + Method [ public method jsonSerialize ] { - Parameters [0] { @@ -1386,7 +1749,7 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - Class [ final class Teds\SortedStrictSet implements IteratorAggregate, Traversable, Countable, JsonSerializable ] { + Class [ final class Teds\SortedStrictSet implements IteratorAggregate, Traversable, Teds\Values, Countable, JsonSerializable ] { - Constants [0] { } @@ -1429,7 +1792,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -1458,7 +1821,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method values ] { + Method [ public method values ] { - Parameters [0] { } @@ -1493,7 +1856,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ mixed ] } - Method [ public method contains ] { + Method [ public method contains ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -1561,7 +1924,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [12] { + - Methods [15] { Method [ public method __construct ] { - Parameters [1] { @@ -1646,6 +2009,28 @@ Extension [ extension #99 teds version 0.11.0 ] { } - Return [ void ] } + + Method [ public method values ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method __serialize ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method __unserialize ] { + + - Parameters [1] { + Parameter #0 [ array $data ] + } + - Return [ void ] + } } } @@ -1670,7 +2055,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [12] { + - Methods [15] { Method [ public method __construct ] { - Parameters [1] { @@ -1755,10 +2140,32 @@ Extension [ extension #99 teds version 0.11.0 ] { } - Return [ void ] } + + Method [ public method values ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method __serialize ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method __unserialize ] { + + - Parameters [1] { + Parameter #0 [ array $data ] + } + - Return [ void ] + } } } - Class [ final class Teds\StableSortedListMap implements IteratorAggregate, Traversable, Countable, JsonSerializable, ArrayAccess ] { + Class [ final class Teds\StableSortedListMap implements IteratorAggregate, Traversable, Teds\Collection, ArrayAccess, Countable, Teds\Values, JsonSerializable ] { - Constants [0] { } @@ -1787,7 +2194,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [24] { + - Methods [26] { Method [ public method __construct ] { - Parameters [1] { @@ -1809,7 +2216,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -1845,7 +2252,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method values ] { + Method [ public method toArray ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method values ] { - Parameters [0] { } @@ -1951,7 +2365,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } - Method [ public method containsKey ] { + Method [ public method contains ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -1959,6 +2373,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } + Method [ public method containsKey ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Return [ bool ] + } + Method [ public method jsonSerialize ] { - Parameters [0] { @@ -1968,7 +2390,7 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - Class [ final class Teds\StableSortedListSet implements IteratorAggregate, Traversable, Countable, JsonSerializable ] { + Class [ final class Teds\StableSortedListSet implements IteratorAggregate, Traversable, Teds\Values, Countable, JsonSerializable ] { - Constants [0] { } @@ -2011,7 +2433,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -2040,7 +2462,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method values ] { + Method [ public method values ] { - Parameters [0] { } @@ -2075,7 +2497,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ mixed ] } - Method [ public method contains ] { + Method [ public method contains ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -2108,7 +2530,7 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - Class [ final class Teds\StrictMap implements IteratorAggregate, Traversable, Countable, JsonSerializable, ArrayAccess ] { + Class [ final class Teds\StrictMap implements IteratorAggregate, Traversable, Teds\Collection, ArrayAccess, Countable, Teds\Values, JsonSerializable ] { - Constants [0] { } @@ -2137,7 +2559,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [18] { + - Methods [20] { Method [ public method __construct ] { - Parameters [1] { @@ -2159,7 +2581,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -2195,7 +2617,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method values ] { + Method [ public method toArray ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method values ] { - Parameters [0] { } @@ -2242,7 +2671,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method containsValue ] { + Method [ public method containsValue ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -2250,7 +2679,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } - Method [ public method containsKey ] { + Method [ public method contains ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -2258,6 +2687,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } + Method [ public method containsKey ] { + + - Parameters [1] { + Parameter #0 [ mixed $key ] + } + - Return [ bool ] + } + Method [ public method get ] { - Parameters [2] { @@ -2276,7 +2713,7 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - Class [ final class Teds\StrictSet implements IteratorAggregate, Traversable, Countable, JsonSerializable ] { + Class [ final class Teds\StrictSet implements IteratorAggregate, Traversable, Teds\Values, Countable, JsonSerializable ] { - Constants [0] { } @@ -2319,7 +2756,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -2348,14 +2785,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method values ] { + Method [ public method values ] { - Parameters [0] { } - Return [ array ] } - Method [ public method contains ] { + Method [ public method contains ] { - Parameters [1] { Parameter #0 [ mixed $value ] @@ -2388,7 +2825,7 @@ Extension [ extension #99 teds version 0.11.0 ] { } } - Class [ final class Teds\Vector implements IteratorAggregate, Traversable, Countable, JsonSerializable, ArrayAccess ] { + Class [ final class Teds\Vector implements IteratorAggregate, Traversable, Teds\ListInterface, Teds\Values, Countable, ArrayAccess, Teds\Collection, JsonSerializable ] { - Constants [0] { } @@ -2409,7 +2846,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Properties [0] { } - - Methods [25] { + - Methods [27] { Method [ public method __construct ] { - Parameters [1] { @@ -2431,7 +2868,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ int ] } - Method [ public method isEmpty ] { + Method [ public method isEmpty ] { - Parameters [0] { } @@ -2491,7 +2928,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method push ] { + Method [ public method push ] { - Parameters [1] { Parameter #0 [ mixed ...$values ] @@ -2499,21 +2936,28 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ void ] } - Method [ public method pop ] { + Method [ public method pop ] { - Parameters [0] { } - Return [ mixed ] } - Method [ public method toArray ] { + Method [ public method toArray ] { - Parameters [0] { } - Return [ array ] } - Method [ public method get ] { + Method [ public method values ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method get ] { - Parameters [1] { Parameter #0 [ int $offset ] @@ -2521,7 +2965,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ mixed ] } - Method [ public method set ] { + Method [ public method set ] { - Parameters [2] { Parameter #0 [ int $offset ] @@ -2546,6 +2990,14 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ bool ] } + Method [ public method containsKey ] { + + - Parameters [1] { + Parameter #0 [ mixed $offset ] + } + - Return [ bool ] + } + Method [ public method offsetSet ] { - Parameters [2] { @@ -2571,7 +3023,7 @@ Extension [ extension #99 teds version 0.11.0 ] { - Return [ ?int ] } - Method [ public method contains ] { + Method [ public method contains ] { - Parameters [1] { Parameter #0 [ mixed $value ] diff --git a/php-pecl-teds.spec b/php-pecl-teds.spec index 933cbda..1c97555 100644 --- a/php-pecl-teds.spec +++ b/php-pecl-teds.spec @@ -19,7 +19,7 @@ %global pecl_name teds %global ini_name 40-%{pecl_name}.ini -%global upstream_version 0.11.0 +%global upstream_version 0.12.0 #global upstream_prever a1 Summary: Tentative Extra Data Structures @@ -194,6 +194,9 @@ fi %changelog +* Thu Feb 10 2022 Remi Collet - 0.12.0-1 +- update to 0.12.0 + * Wed Feb 9 2022 Remi Collet - 0.11.0-1 - update to 0.11.0 -- cgit