BitArray.opCat

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

  1. BitArray opCat(bool rhs)
  2. BitArray opCat(const(BitArray) rhs)
    struct BitArray
    const
    opCat
    (
    ref const(BitArray) rhs
    )

Parameters

rhs const(BitArray)

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