UniTree.opt

Get the tree

  1. Optional!(const(T)) opt()
  2. Optional!(T) opt()
  3. Optional!(const(T)) opt(string path)
    struct UniTree
    const pure @safe
    Optional!(const(T))
    opt
    (
    T
    )
    (
    string path
    )
  4. Optional!(T) opt(string path)

Parameters

path string

The path to the desired site

Examples

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

Meta