UniTree.get

Get the node

  1. inout(T) get()
  2. inout(T) get(string path)
    struct UniTree
    inout pure @safe
    inout(T)
    get
    (
    T
    )
    (
    string path
    )

Parameters

path string

The path to the desired site

Examples

node.get!int("foo.bar");

Meta