RUnlock releases a read lock on Set.
()
| 37 | |
| 38 | // RUnlock releases a read lock on Set. |
| 39 | func (w *Set) RUnlock() { |
| 40 | w.mux.RUnlock() |
| 41 | } |
| 42 | |
| 43 | // DoForEach locks Set to prevent mutations and executes f on every element |
| 44 | // currently in the set. |
no outgoing calls