Add the given item to the set
(item byte)
| 180 | |
| 181 | // Add the given item to the set |
| 182 | func (s setF1) Add(item byte) { |
| 183 | s[item] = item |
| 184 | } |
| 185 | |
| 186 | // Contains the given item in the set? |
| 187 | func (s setF1) Contains(item byte) bool { |
no outgoing calls