OptionalInt64 provides convenience methods for manipulating optional integers.
| 35 | |
| 36 | // OptionalInt64 provides convenience methods for manipulating optional integers. |
| 37 | type OptionalInt64 int64 |
| 38 | |
| 39 | // OrDefault returns the value of the integer or provided default if it's nil. |
| 40 | func (b *OptionalInt64) OrDefault(def int64) int64 { |
no outgoing calls
no test coverage detected