Currently, classes like Area which accept a custom hasher pass EqualityComparer.Default to the underlying structures if there is no result. However the Point hashing tests provide at least initial evidence to suggest passing EqualityComparer.Default may be slower than passing no hasher at all. We should test this and optimize accordingly.
Currently, classes like
Area
which accept a custom hasher passEqualityComparer.Default
to the underlying structures if there is no result. However the Point hashing tests provide at least initial evidence to suggest passingEqualityComparer.Default
may be slower than passing no hasher at all. We should test this and optimize accordingly.