alts property

BitSet alts

Gets the complete set of represented alternatives for the configuration set.

@return the set of represented alternatives in this configuration set

@since 4.3

Implementation

BitSet get alts {
  final alts = BitSet();
  for (var config in configs) {
    alts.set(config.alt);
  }
  return alts;
}