-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing code comments. Existing code comments updated to use <p…
…ara> element for splitting different language versions. Added <inheritdoc> for DocFX. Address arguments renamed to path. Removed comments for exceptions in interfaces.
- Loading branch information
Showing
11 changed files
with
179 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
namespace Platform.Memory | ||
{ | ||
/// <summary> | ||
/// Represents a memory block interface with access via indexer. | ||
/// Представляет интерфейс блока памяти с доступом через индексатор. | ||
/// <para>Represents a memory block interface with access via indexer.</para> | ||
/// <para>Представляет интерфейс блока памяти с доступом через индексатор.</para> | ||
/// </summary> | ||
/// <typeparam name="TElement">Element type. Тип элемента.</typeparam> | ||
/// <typeparam name="TElement"><para>Element type.</para><para>Тип элемента.</para></typeparam> | ||
public interface IArrayMemory<TElement> : IMemory | ||
{ | ||
/// <summary> | ||
/// Gets or sets the element at the specified index. | ||
/// Возвращает или устанавливает элемент по указанному индексу. | ||
/// <para>Gets or sets the element at the specified index.</para> | ||
/// <para>Возвращает или устанавливает элемент по указанному индексу.</para> | ||
/// </summary> | ||
/// <param name="index">The index of the element to get or set. Индекс элемента, который нужно получить или установить.</param> | ||
/// <param name="index"><para>The index of the element to get or set.</para><para>Индекс элемента, который нужно получить или установить.</para></param> | ||
TElement this[long index] { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.