for tinygo, getBytespec just calls calcBytespec a simple/slow function with a switch statement - doesn't require any heap alloc, moves the space requirements into code instad of ram
(v byte)
| 8 | // requirements into code instad of ram |
| 9 | |
| 10 | func getBytespec(v byte) bytespec { |
| 11 | return calcBytespec(v) |
| 12 | } |
no test coverage detected
searching dependent graphs…