Integer is a generic type constraint for all integers (signed and unsigned.)
| 16 | |
| 17 | // Integer is a generic type constraint for all integers (signed and unsigned.) |
| 18 | type Integer interface { |
| 19 | Signed | Unsigned |
| 20 | } |
| 21 | |
| 22 | // Float is a generic type constraint for all floating point types. |
| 23 | type Float interface { |
nothing calls this directly
no outgoing calls
no test coverage detected