| 52 | type valHash [quad.HashSize]byte |
| 53 | |
| 54 | type GraphStream struct { |
| 55 | seen map[valHash]int |
| 56 | buf *bytes.Buffer |
| 57 | w io.Writer |
| 58 | } |
| 59 | |
| 60 | func printNodeID(id int) string { |
| 61 | return strconv.FormatInt(int64(id), 16) |
nothing calls this directly
no outgoing calls
no test coverage detected