8000 Document System.Buffers.*SpanAction delegates by carlossanlop · Pull Request #3621 · dotnet/dotnet-api-docs · GitHub
[go: up one dir, main page]

Skip to content

Document System.Buffers.*SpanAction delegates #3621

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions xml/System.Buffers/ReadOnlySpanAction`2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Docs>
<typeparam name="T">To be added.</typeparam>
<typeparam name="TArg">To be added.</typeparam>
<param name="span">To be added.</param>
<param name="arg">To be added.</param>
<summary>To be added.</summary>
<typeparam name="T">The type of the objects in the read-only span.</typeparam>
<typeparam name="TArg">The type of the object that represents the state.</typeparam>
<param name="span">A read-only span of objects of type <typeparamref name="T" />.</param>
<param name="arg">A state object of type <typeparamref name="TArg" />.</param>
<summary>Encapsulates a method that receives a read-only span of objects of type <typeparamref name="T" /> and a state object of type <typeparamref name="TArg" />.</summary>
<remarks>To be added.</remarks>
</Docs>
</Type>
10 changes: 5 additions & 5 deletions xml/System.Buffers/SpanAction`2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Docs>
<typeparam name="T">To be added.</typeparam>
<typeparam name="TArg">To be added.</typeparam>
<param name="span">To be added.</param>
<param name="arg">To be added.</param>
<summary>To be added.</summary>
<typeparam name="T">The type of the objects in the span.</typeparam>
<typeparam name="TArg">The type of the object that represents the state.</typeparam>
<param name="span">A span of objects of type <typeparamref name="T" />.</param>
<param name="arg">A state object of type <typeparamref name="TArg" />.</param>
<summary>Encapsulates a method that receives a span of objects of type <typeparamref name="T" /> and a state object of type <typeparamref name="TArg" />.</summary>
<remarks>To be added.</remarks>
</Docs>
</Type>
0