From d244614b2d7051089e5abc8f890ccd68fdd686cd Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 26 May 2023 08:12:06 +0200 Subject: update to 3.2.0 --- REFLECTION | 92 ++++++++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 71 insertions(+), 21 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index 51222ff..9d93119 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,7 +1,7 @@ -Extension [ extension #76 bitset version 3.0.1 ] { +Extension [ extension #122 bitset version 3.2.0 ] { - Classes [1] { - Class [ class BitSet ] { + Class [ class BitSet implements Stringable ] { - Constants [0] { } @@ -9,153 +9,203 @@ Extension [ extension #76 bitset version 3.0.1 ] { - Static properties [0] { } - - Static methods [3] { + - Static methods [4] { Method [ static public method fromArray ] { - Parameters [1] { - Parameter #0 [ $arr ] + Parameter #0 [ array $arr ] } + - Return [ BitSet ] + } + + Method [ static public method fromInteger ] { + + - Parameters [1] { + Parameter #0 [ int $value ] + } + - Return [ BitSet ] } Method [ static public method fromString ] { - Parameters [1] { - Parameter #0 [ $str ] + Parameter #0 [ string $str ] } + - Return [ BitSet ] } Method [ static public method fromRawValue ] { - Parameters [1] { - Parameter #0 [ $str ] + Parameter #0 [ string $str ] } + - Return [ BitSet ] } } - Properties [0] { } - - Methods [20] { + - Methods [21] { Method [ public method __construct ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ int $value = 0 ] } } Method [ public method andOp ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ BitSet $set ] } + - Return [ void ] } Method [ public method andNotOp ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ BitSet $set ] } + - Return [ void ] } Method [ public method cardinality ] { - Parameters [0] { } + - Return [ int ] } Method [ public method clear ] { - - Parameters [0] { + - Parameters [2] { + Parameter #0 [ int $from = -1 ] + Parameter #1 [ int $to = 0 ] } + - Return [ void ] } Method [ public method get ] { - Parameters [1] { - Parameter #0 [ $index ] + Parameter #0 [ int $index ] } + - Return [ bool ] } Method [ public method getRawValue ] { - Parameters [0] { } + - Return [ string ] } Method [ public method intersects ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ BitSet $set ] } + - Return [ bool ] } Method [ public method isEmpty ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method length ] { - Parameters [0] { } + - Return [ int ] } Method [ public method nextClearBit ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ int $start ] } + - Return [ int|bool ] } Method [ public method nextSetBit ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ int $start ] } + - Return [ int|bool ] } Method [ public method orOp ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ BitSet $set ] } + - Return [ void ] } Method [ public method previousClearBit ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ int $start ] } + - Return [ int|bool ] } Method [ public method previousSetBit ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ int $start ] } + - Return [ int|bool ] } Method [ public method set ] { - - Parameters [0] { + - Parameters [2] { + Parameter #0 [ int $from = -1 ] + Parameter #1 [ int $to = 0 ] } + - Return [ void ] } Method [ public method size ] { - Parameters [0] { } + - Return [ int ] } Method [ public method toArray ] { - Parameters [0] { } + - Return [ array ] } - Method [ public method xorOp ] { + Method [ public method toInteger ] { - Parameters [0] { } + - Return [ int ] + } + + Method [ public method xorOp ] { + + - Parameters [1] { + Parameter #0 [ BitSet $set ] + } + - Return [ void ] } - Method [ public method __toString ] { + Method [ public method __toString ] { - Parameters [0] { } + - Return [ string ] } } } -- cgit