Interface IPathComparer<TPath>
Provides an interface for defining custom comparison logic for path types. This interface combines both equality (IEqualityComparer<T>) and ordering (IComparer<T>) comparisons.
public interface IPathComparer<in TPath> : IEqualityComparer<TPath>, IComparer<TPath> where TPath : IPath
Type Parameters
TPath
The type of paths being compared, which must implement IPath.
- Inherited Members