1 import std.algorithm : equal; 2 assert(equal( 3 [3, 5].neighbors4, 4 [[4, 5], [3, 6], [2, 5], [3, 4]], 5 ));
See Implementation