An Option configures a mutex.
| 53 | |
| 54 | // An Option configures a mutex. |
| 55 | type Option interface { |
| 56 | Apply(*Mutex) |
| 57 | } |
| 58 | |
| 59 | // OptionFunc is a function that configures a mutex. |
| 60 | type OptionFunc func(*Mutex) |
no outgoing calls
no test coverage detected
searching dependent graphs…