documentation update
.NET Test / .NET tests (push) Successful in 1m58s
.NET Publish / publish (push) Successful in 58s

This commit is contained in:
2026-07-10 22:16:20 +04:00
parent 8e961352d2
commit e37e9b65c3
9 changed files with 137 additions and 11 deletions
+5
View File
@@ -3,6 +3,11 @@ using System.Runtime.InteropServices;
namespace Just.Core.Collections;
/// <summary>
/// A 2D grid with lazy min/max caching, cloning, and binary stream serialization.
/// Requires <typeparamref name="T"/> to support comparison and equality operators.
/// </summary>
/// <typeparam name="T">The element type; must implement <c>IComparisonOperators&lt;T, T, bool&gt;</c> and <c>IEqualityOperators&lt;T, T, bool&gt;</c>.</typeparam>
public class DataMap<T> : Map<T>, IDataMap<T>, ICloneable
where T : IComparisonOperators<T, T, bool>, IEqualityOperators<T, T, bool>
{