String is a decoder that decodes strings coming from the kernel
| 6 | |
| 7 | // String is a decoder that decodes strings coming from the kernel |
| 8 | type String struct{} |
| 9 | |
| 10 | // Decode transforms byte slice from the kernel into string |
| 11 | func (s *String) Decode(in []byte, _ config.Decoder) ([]byte, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected