diff options
Diffstat (limited to 'REFLECTION')
| -rw-r--r-- | REFLECTION | 270 | 
1 files changed, 270 insertions, 0 deletions
diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..cf0d1af --- /dev/null +++ b/REFLECTION @@ -0,0 +1,270 @@ +Extension [ <persistent> extension #77 bitset version 2.0.1 ] { + +  - Functions { +    Function [ <internal:bitset> function bitset_empty ] { + +      - Parameters [1] { +        Parameter #0 [ <optional> $bitcount ] +      } +    } +    Function [ <internal:bitset> function bitset_incl ] { + +      - Parameters [2] { +        Parameter #0 [ <required> &$bitset ] +        Parameter #1 [ <required> $bit ] +      } +    } +    Function [ <internal:bitset> function bitset_excl ] { + +      - Parameters [2] { +        Parameter #0 [ <required> &$bitset ] +        Parameter #1 [ <required> $bit ] +      } +    } +    Function [ <internal:bitset> function bitset_in ] { + +      - Parameters [2] { +        Parameter #0 [ <required> $bitset ] +        Parameter #1 [ <required> $bit ] +      } +    } +    Function [ <internal:bitset> function bitset_fill ] { + +      - Parameters [1] { +        Parameter #0 [ <required> $bitcount ] +      } +    } +    Function [ <internal:bitset> function bitset_intersection ] { + +      - Parameters [2] { +        Parameter #0 [ <required> $bitset1 ] +        Parameter #1 [ <required> $bitset2 ] +      } +    } +    Function [ <internal:bitset> function bitset_union ] { + +      - Parameters [2] { +        Parameter #0 [ <required> $bitset1 ] +        Parameter #1 [ <required> $bitset2 ] +      } +    } +    Function [ <internal:bitset> function bitset_invert ] { + +      - Parameters [2] { +        Parameter #0 [ <required> $bitset ] +        Parameter #1 [ <required> $size ] +      } +    } +    Function [ <internal:bitset> function bitset_subset ] { + +      - Parameters [2] { +        Parameter #0 [ <required> $bitset1 ] +        Parameter #1 [ <required> $bitset2 ] +      } +    } +    Function [ <internal:bitset> function bitset_equal ] { + +      - Parameters [2] { +        Parameter #0 [ <required> $bitset1 ] +        Parameter #1 [ <required> $bitset2 ] +      } +    } +    Function [ <internal:bitset> function bitset_to_string ] { + +      - Parameters [1] { +        Parameter #0 [ <required> $bitset ] +      } +    } +    Function [ <internal:bitset> function bitset_from_string ] { + +      - Parameters [1] { +        Parameter #0 [ <required> $source_str ] +      } +    } +    Function [ <internal:bitset> function bitset_to_hash ] { + +      - Parameters [1] { +        Parameter #0 [ <required> $bitset ] +      } +    } +    Function [ <internal:bitset> function bitset_from_hash ] { + +      - Parameters [1] { +        Parameter #0 [ <required> $bit_array ] +      } +    } +    Function [ <internal:bitset> function bitset_to_array ] { + +      - Parameters [1] { +        Parameter #0 [ <required> $bitset ] +      } +    } +    Function [ <internal:bitset> function bitset_from_array ] { + +      - Parameters [1] { +        Parameter #0 [ <required> $bit_array ] +      } +    } +    Function [ <internal:bitset> function bitset_is_empty ] { + +      - Parameters [1] { +        Parameter #0 [ <required> $bitset ] +      } +    } +  } + +  - Classes [1] { +    Class [ <internal:bitset> class BitSet ] { + +      - Constants [0] { +      } + +      - Static properties [0] { +      } + +      - Static methods [2] { +        Method [ <internal:bitset> static public method fromArray ] { + +          - Parameters [1] { +            Parameter #0 [ <required> $arr ] +          } +        } + +        Method [ <internal:bitset> static public method fromString ] { + +          - Parameters [1] { +            Parameter #0 [ <required> $str ] +          } +        } +      } + +      - Properties [0] { +      } + +      - Methods [20] { +        Method [ <internal:bitset, ctor> public method __construct ] { + +          - Parameters [1] { +            Parameter #0 [ <required> $value ] +          } +        } + +        Method [ <internal:bitset> public method andOp ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method andNotOp ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method cardinality ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method clear ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method get ] { + +          - Parameters [1] { +            Parameter #0 [ <required> $index ] +          } +        } + +        Method [ <internal:bitset> public method getRawValue ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method intersects ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method isEmpty ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method length ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method nextClearBit ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method nextSetBit ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method orOp ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method previousClearBit ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method previousSetBit ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method set ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method size ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method toArray ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method xorOp ] { + +          - Parameters [0] { +          } +        } + +        Method [ <internal:bitset> public method __toString ] { + +          - Parameters [0] { +          } +        } +      } +    } +  } +} +  | 
