first commit
This commit is contained in:
10
Core/Collections/IDataMap.cs
Normal file
10
Core/Collections/IDataMap.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user