UniTree.opt

Get the tree

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

Parameters

path string

The path to the desired site

Examples

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

Meta