Discrete

Discrete Space

struct Discrete {}

Alias This

n

Members

Static functions

from
from(T info)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

n
long n;
Undocumented in source.

Examples

    static assert(isSpace!Discrete);

    auto s = `{
   "name": "Discrete",
   "n": 123
}`;
    auto j = s.parseJSON;
    assert(Discrete.from(j) == Discrete(123));

Meta