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
node
A reference to the base node.
path
The 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
path
is valid,nil
otherwise.