checkEqual

Undocumented in source. Be warned that the author may not have intended to support it.
  1. void checkEqual(T value, U expected, string file, ulong line)
    void
    checkEqual
    (
    T
    U
    )
    (
    in T value
    ,,
    in string file = __FILE__
    ,
    in ulong line = __LINE__
    )
    if (
    is(typeof(value != expected) == bool) &&
    !is(T == class)
    )
  2. void checkEqual(T value, T expected, string file, ulong line)

Meta