Files
Just.Core/Core/Collections/IDataMap.cs
2023-12-14 21:48:48 +04:00

11 lines
250 B
C#

using System.Numerics;
namespace Just.Core.Collections;
public interface IDataMap<T> : IMap<T>, ICloneable
where T : IComparisonOperators<T, T, bool>, IEqualityOperators<T, T, bool>
{
MapPoint<T> Min { get; }
MapPoint<T> Max { get; }
}