NewPath returns a new Path
(items ...string)
| 127 | |
| 128 | // NewPath returns a new Path |
| 129 | func NewPath(items ...string) Path { |
| 130 | return Path(strings.Join(items, pathSeparator)) |
| 131 | } |
| 132 | |
| 133 | // Next returns a new path by append part to the current path |
| 134 | func (p Path) Next(part string) Path { |
searching dependent graphs…