BitArray.opBinary

Generates a new array which is the result of this array concatenated with the supplied array.

  1. BitArray opBinary(BitArray rhs)
  2. BitArray opBinary(BitArray rhs)
  3. BitArray opBinary(bool rhs)
    struct BitArray
    opBinary
    (
    string op : "~"
    )
    (
    bool rhs
    )
  4. BitArray opBinary(BitArray rhs)

Parameters

op

operation to perform

rhs bool

The array with which to perform the concatenation operation.

Return Value

Type: BitArray

A new array which is the result of this array concatenated with the supplied array.

Meta