id_list.go 233 B

12345678
  1. package report
  2. // StringSet is a sorted set of unique strings. Clients must use the Add
  3. // method to add strings.
  4. type StringSet []string
  5. // IDList is a list of string IDs, which are always sorted and unique.
  6. type IDList StringSet