public void ItCanPrintsEmpty() { Vec.Empty <object>().ToString() .Is("[]"); }
public void ItCanPrintsNonEmpty() { Vec.Of(1, 2, 3).ToString() .Is("[1, 2, 3]"); }
public void ItSupportsLexicographicalOrderByDefault() { (Vec.Of(1, 2, 3) < Vec.Of(1, 2, 4)).Is(true); (Vec.Of(1, 2, 4) < Vec.Of(1, 3)).Is(true); }