DecodePtr is a convenience type for decoding into a pointer.
| 297 | |
| 298 | // DecodePtr is a convenience type for decoding into a pointer. |
| 299 | type DecodePtr[T any] interface { |
| 300 | *T |
| 301 | Decodable |
| 302 | } |
| 303 | |
| 304 | // DecoderFrom allows augmenting any type with a DecodeMsg method into a method |
| 305 | // that reads from Reader and returns a T. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…