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
@@ -2,6 +2,11 @@ using System.Collections;
namespace Just.Core.Collections;
/// <summary>
/// A 2D grid container providing indexer access, enumeration as <see cref="MapPoint{T}"/> values,
/// and conversion to a 2D array. Coordinates are clamped to valid ranges.
/// </summary>
/// <typeparam name="T">The type of elements in the map.</typeparam>
public class Map<T> : IMap<T>
{
internal readonly T[] _values;