setBit

  1. void setBit(T a, I bixs)
  2. void setBit(T a, I bixs)
    @trusted @nogc pure nothrow
    void
    setBit
    (
    T
    I...
    )
    (
    ref T a
    ,)
    if (
    (!(isIntegral!T)) &&
    allSatisfy!(isIntegral, I)
    )

Return Value

Type: void

Check if all bix:th Bits Of a are set.

Meta