using System.Numerics; namespace Just.Core.Collections; /// Read-only interface for a 2D grid with min/max tracking and cloning. /// The element type; must support comparison and equality operators. public interface IDataMap : IMap, ICloneable where T : IComparisonOperators, IEqualityOperators { MapPoint Min { get; } MapPoint Max { get; } }