add method

void add(
  1. T value
)

Adds the given value to this set.

Implementation

void add(T value) => bits |= this[value];