()
| 92 | } |
| 93 | |
| 94 | func (set TimedSet) Validate() error { |
| 95 | for name := range set { |
| 96 | if !IsValidChannel(name) { |
| 97 | return illegalChannelError(name) |
| 98 | } |
| 99 | } |
| 100 | return nil |
| 101 | } |
| 102 | |
| 103 | func (set TimedSet) AllKeys() []string { |
| 104 | result := make([]string, 0, len(set)) |
nothing calls this directly
no test coverage detected