Int is a struct for concurrent-safe operation for type int.
| 15 | |
| 16 | // Int is a struct for concurrent-safe operation for type int. |
| 17 | type Int struct { |
| 18 | value int64 |
| 19 | } |
| 20 | |
| 21 | // NewInt creates and returns a concurrent-safe object for int type, |
| 22 | // with given initial value `value`. |
nothing calls this directly
no outgoing calls
no test coverage detected