()
| 101 | } |
| 102 | |
| 103 | func (set TimedSet) AllKeys() []string { |
| 104 | result := make([]string, 0, len(set)) |
| 105 | for name := range set { |
| 106 | result = append(result, name) |
| 107 | } |
| 108 | return result |
| 109 | } |
| 110 | |
| 111 | func (set TimedSet) Copy() TimedSet { |
| 112 | result := make(TimedSet, len(set)) |
no outgoing calls