Fghj.opEquals

== operator overloads for null

  1. bool opEquals(Fghj rhs)
  2. bool opEquals(typeof(null) )
    struct Fghj
    const pure @safe nothrow
    bool
    opEquals
    (
    typeof(null)
    )
  3. bool opEquals(bool boolean)
  4. bool opEquals(char[] str)

Examples

import fghj.jsonparser;
auto fghjData = `null`.parseJson;
assert(fghjData == null);

Meta