Fghj.opEquals

== operator overloads for null

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

Examples

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

Meta