(dst []byte, src ...byte)
| 35 | } |
| 36 | |
| 37 | func appendReverse(dst []byte, src ...byte) []byte { |
| 38 | for i := range src { |
| 39 | dst = append(dst, src[len(src)-1-i]) |
| 40 | } |
| 41 | return dst |
| 42 | } |
| 43 | |
| 44 | // DeviceEIRPToFloat32 returns v as a float32 value. |
| 45 | func DeviceEIRPToFloat32(v ttnpb.DeviceEIRP) float32 { |
no outgoing calls
no test coverage detected