Fghj.opEquals

== operator overloads for bool

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

Examples

import fghj.jsonparser;
auto fghjData = `true`.parseJson;
assert(fghjData == true);
assert(fghjData != false);

Meta