Home | History | Annotate | Download | only in src

Lines Matching full:set_

1046     explicit Types(byte bits) : set_(bits) {}
1048 bool IsEmpty() const { return set_.IsEmpty(); }
1049 bool Contains(Type type) const { return set_.Contains(type); }
1050 void Add(Type type) { set_.Add(type); }
1051 byte ToByte() const { return set_.ToIntegral(); }
1059 EnumSet<Type, byte> set_;