DatasyncNode?
extension DatasyncNode?
-
Returns a reference to a database node, relatively to a base node.
This operator returns:
node.relativeNode(for: path)Declaration
Swift
public static func / (node: DatasyncNode?, path: String) -> DatasyncNode?Parameters
nodeA reference to the base node.
pathThe relative path of the node to refer. It can start or not with a
/(slash) character. It is always relative.Return Value
A node reference when the
pathis valid,nilotherwise.