Dump prints out information about the Vertices
(out io.Writer, indent int)
| 96 | |
| 97 | // Dump prints out information about the Vertices |
| 98 | func (v *Vertices) Dump(out io.Writer, indent int) { |
| 99 | |
| 100 | fmt.Fprintf(out, "%sVertices id:%s name:%s\n", sIndent(indent), v.Id, v.Name) |
| 101 | for _, inp := range v.Input { |
| 102 | inp.Dump(out, indent+step) |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | // |
| 107 | // Input |