(zb scode.Bytes, a netip.Addr)
| 279 | type TypeOfIP struct{} |
| 280 | |
| 281 | func AppendIP(zb scode.Bytes, a netip.Addr) scode.Bytes { |
| 282 | return append(zb, a.AsSlice()...) |
| 283 | } |
| 284 | |
| 285 | func EncodeIP(a netip.Addr) scode.Bytes { |
| 286 | return AppendIP(nil, a) |
no outgoing calls
no test coverage detected