Parts returns a copy of the compiled path components. SYS-REQ-114
()
| 220 | // Parts returns a copy of the compiled path components. |
| 221 | // SYS-REQ-114 |
| 222 | func (c CompiledPath) Parts() []string { |
| 223 | parts := make([]string, len(c.parts)) |
| 224 | copy(parts, c.parts) |
| 225 | return parts |
| 226 | } |
no outgoing calls