Skip to content

Commit 3aca08a

Browse files
committed
Add missing documentation for Vector* Item
1 parent c07ca00 commit 3aca08a

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

xml/System.Runtime.Intrinsics/Vector128`1.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,10 +232,13 @@
232232
<Parameter Name="index" Type="System.Int32" Index="0" FrameworkAlternate="net-7.0" />
233233
</Parameters>
234234
<Docs>
235-
<param name="index">To be added.</param>
236-
<summary>To be added.</summary>
237-
<value>To be added.</value>
235+
<param name="index">The index of the element to get.</param>
236+
<summary>Gets the element at the specified index.</summary>
237+
<value>The value of the element at <paramref name="index" />.</value>
238238
<remarks>To be added.</remarks>
239+
<exception cref="T:System.ArgumentOutOfRangeException">
240+
<paramref name="index" /> was less than zero or greater than the number of elements.</exception>
241+
<exception cref="T:System.NotSupportedException">The type of the vector (<typeparamref name="T" />) is not supported.</exception>
239242
</Docs>
240243
</Member>
241244
<Member MemberName="op_Addition">

xml/System.Runtime.Intrinsics/Vector256`1.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,10 +232,13 @@
232232
<Parameter Name="index" Type="System.Int32" Index="0" FrameworkAlternate="net-7.0" />
233233
</Parameters>
234234
<Docs>
235-
<param name="index">To be added.</param>
236-
<summary>To be added.</summary>
237-
<value>To be added.</value>
235+
<param name="index">The index of the element to get.</param>
236+
<summary>Gets the element at the specified index.</summary>
237+
<value>The value of the element at <paramref name="index" />.</value>
238238
<remarks>To be added.</remarks>
239+
<exception cref="T:System.ArgumentOutOfRangeException">
240+
<paramref name="index" /> was less than zero or greater than the number of elements.</exception>
241+
<exception cref="T:System.NotSupportedException">The type of the vector (<typeparamref name="T" />) is not supported.</exception>
239242
</Docs>
240243
</Member>
241244
<Member MemberName="op_Addition">

xml/System.Runtime.Intrinsics/Vector64`1.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,10 +232,13 @@
232232
<Parameter Name="index" Type="System.Int32" Index="0" FrameworkAlternate="net-7.0" />
233233
</Parameters>
234234
<Docs>
235-
<param name="index">To be added.</param>
236-
<summary>To be added.</summary>
237-
<value>To be added.</value>
235+
<param name="index">The index of the element to get.</param>
236+
<summary>Gets the element at the specified index.</summary>
237+
<value>The value of the element at <paramref name="index" />.</value>
238238
<remarks>To be added.</remarks>
239+
<exception cref="T:System.ArgumentOutOfRangeException">
240+
<paramref name="index" /> was less than zero or greater than the number of elements.</exception>
241+
<exception cref="T:System.NotSupportedException">The type of the vector (<typeparamref name="T" />) is not supported.</exception>
239242
</Docs>
240243
</Member>
241244
<Member MemberName="op_Addition">

0 commit comments

Comments
 (0)