Path.opEquals

Override equality comparison operators

  1. bool opEquals(Path other)
    struct Path
    @safe pure nothrow const
    bool
    opEquals
    ()
  2. bool opEquals(Path other)

Examples

Test equality comparisons

import dshould;

Path("a", "b").should.equal(Path("a", "b"));
Path("a", "b").should.not.equal(Path("a"));
Path("a", "b").should.not.equal(Path("a", "b", "c"));
Path("a", "b").should.not.equal(Path("a", "c"));

Meta