Properties.get

Get the node if the specified path is not a node

  1. Nullable!T get(string path)
    struct Properties
    Nullable!T
    get
    (
    T
    )
    (
    string path
    )
    if (
    IsValidType!T
    )
  2. Nullable!T get()

Parameters

path
Type: string

The path to the desired site

Examples

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

Meta