documentation update
This commit is contained in:
@@ -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<T, T, bool></c> and <c>IEqualityOperators<T, T, bool></c>.</typeparam>
|
||||
public class DataMap<T> : Map<T>, IDataMap<T>, ICloneable
|
||||
where T : IComparisonOperators<T, T, bool>, IEqualityOperators<T, T, bool>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user