# Functions
ParseJSONSelector accepts a string of json which will be parsed as a selector, and returns a compiled and ready-to-run Selector.
ParseJSONSelector accepts a string of json which will be parsed as a selector, and returns a datamodel.Node of the parsed Data Model.
# Variables
CommonSelector_ExploreAllRecursively is a selector that walks over a graph of data, recursively, without limit (!) until it reaches every part of the graph.
CommonSelector_MatchAllRecursively is like CommonSelector_ExploreAllRecursively, but also matching everything it touches.
CommonSelector_MatchChildren will examine the node it is applied to, walk to each of its children, and match the children.
CommonSelector_MatchPoint is a selector that matches exactly one thing: the first node it touches.