Min is the struct for counting the min value.
| 181 | |
| 182 | // Min is the struct for counting the min value. |
| 183 | type Min struct { |
| 184 | data int |
| 185 | mlock *sync.Mutex |
| 186 | } |
| 187 | |
| 188 | // NewMin new and init the min struct. |
| 189 | func NewMin() *Min { |
nothing calls this directly
no outgoing calls
no test coverage detected