ChildPathObject returns (creating if necessary) the child object from the permanode o, given by the "camliPath:xxxx" attribute, where xxx is the provided path.
(path string)
| 1578 | // from the permanode o, given by the "camliPath:xxxx" attribute, |
| 1579 | // where xxx is the provided path. |
| 1580 | func (o *Object) ChildPathObject(path string) (*Object, error) { |
| 1581 | return o.ChildPathObjectOrFunc(path, o.h.NewObject) |
| 1582 | } |
| 1583 | |
| 1584 | // ChildPathObjectOrFunc returns the child object from the permanode o, |
| 1585 | // given by the "camliPath:xxxx" attribute, where xxx is the provided |