From a1d6c05ba9d2c432ece004734375c12edca8e771 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 31 Oct 2014 13:45:18 +0100 Subject: php-pecl-bitset: 2.0.1 (beta) - new package --- REFLECTION | 270 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 270 insertions(+) create mode 100644 REFLECTION (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..cf0d1af --- /dev/null +++ b/REFLECTION @@ -0,0 +1,270 @@ +Extension [ extension #77 bitset version 2.0.1 ] { + + - Functions { + Function [ function bitset_empty ] { + + - Parameters [1] { + Parameter #0 [ $bitcount ] + } + } + Function [ function bitset_incl ] { + + - Parameters [2] { + Parameter #0 [ &$bitset ] + Parameter #1 [ $bit ] + } + } + Function [ function bitset_excl ] { + + - Parameters [2] { + Parameter #0 [ &$bitset ] + Parameter #1 [ $bit ] + } + } + Function [ function bitset_in ] { + + - Parameters [2] { + Parameter #0 [ $bitset ] + Parameter #1 [ $bit ] + } + } + Function [ function bitset_fill ] { + + - Parameters [1] { + Parameter #0 [ $bitcount ] + } + } + Function [ function bitset_intersection ] { + + - Parameters [2] { + Parameter #0 [ $bitset1 ] + Parameter #1 [ $bitset2 ] + } + } + Function [ function bitset_union ] { + + - Parameters [2] { + Parameter #0 [ $bitset1 ] + Parameter #1 [ $bitset2 ] + } + } + Function [ function bitset_invert ] { + + - Parameters [2] { + Parameter #0 [ $bitset ] + Parameter #1 [ $size ] + } + } + Function [ function bitset_subset ] { + + - Parameters [2] { + Parameter #0 [ $bitset1 ] + Parameter #1 [ $bitset2 ] + } + } + Function [ function bitset_equal ] { + + - Parameters [2] { + Parameter #0 [ $bitset1 ] + Parameter #1 [ $bitset2 ] + } + } + Function [ function bitset_to_string ] { + + - Parameters [1] { + Parameter #0 [ $bitset ] + } + } + Function [ function bitset_from_string ] { + + - Parameters [1] { + Parameter #0 [ $source_str ] + } + } + Function [ function bitset_to_hash ] { + + - Parameters [1] { + Parameter #0 [ $bitset ] + } + } + Function [ function bitset_from_hash ] { + + - Parameters [1] { + Parameter #0 [ $bit_array ] + } + } + Function [ function bitset_to_array ] { + + - Parameters [1] { + Parameter #0 [ $bitset ] + } + } + Function [ function bitset_from_array ] { + + - Parameters [1] { + Parameter #0 [ $bit_array ] + } + } + Function [ function bitset_is_empty ] { + + - Parameters [1] { + Parameter #0 [ $bitset ] + } + } + } + + - Classes [1] { + Class [ class BitSet ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [2] { + Method [ static public method fromArray ] { + + - Parameters [1] { + Parameter #0 [ $arr ] + } + } + + Method [ static public method fromString ] { + + - Parameters [1] { + Parameter #0 [ $str ] + } + } + } + + - Properties [0] { + } + + - Methods [20] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + + Method [ public method andOp ] { + + - Parameters [0] { + } + } + + Method [ public method andNotOp ] { + + - Parameters [0] { + } + } + + Method [ public method cardinality ] { + + - Parameters [0] { + } + } + + Method [ public method clear ] { + + - Parameters [0] { + } + } + + Method [ public method get ] { + + - Parameters [1] { + Parameter #0 [ $index ] + } + } + + Method [ public method getRawValue ] { + + - Parameters [0] { + } + } + + Method [ public method intersects ] { + + - Parameters [0] { + } + } + + Method [ public method isEmpty ] { + + - Parameters [0] { + } + } + + Method [ public method length ] { + + - Parameters [0] { + } + } + + Method [ public method nextClearBit ] { + + - Parameters [0] { + } + } + + Method [ public method nextSetBit ] { + + - Parameters [0] { + } + } + + Method [ public method orOp ] { + + - Parameters [0] { + } + } + + Method [ public method previousClearBit ] { + + - Parameters [0] { + } + } + + Method [ public method previousSetBit ] { + + - Parameters [0] { + } + } + + Method [ public method set ] { + + - Parameters [0] { + } + } + + Method [ public method size ] { + + - Parameters [0] { + } + } + + Method [ public method toArray ] { + + - Parameters [0] { + } + } + + Method [ public method xorOp ] { + + - Parameters [0] { + } + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + } + } + } + } +} + -- cgit