ToByte returns a pointer to the passed byte value.
(b byte)
| 20 | |
| 21 | // ToByte returns a pointer to the passed byte value. |
| 22 | func ToByte(b byte) *byte { |
| 23 | return &b |
| 24 | } |
| 25 | |
| 26 | // ToComplex64 returns a pointer to the passed complex64 value. |
| 27 | func ToComplex64(c complex64) *complex64 { |