-
Notifications
You must be signed in to change notification settings - Fork 790
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
add xmldoc about Seq.rev consume input sequence #903
Conversation
@@ -957,6 +957,7 @@ namespace Microsoft.FSharp.Collections | |||
/// <param name="source">The input sequence.</param> | |||
/// <returns>The reversed sequence.</returns> | |||
/// <exception cref="System.ArgumentNullException">Thrown when the input sequence is null.</exception> | |||
/// <remarks>Consume the whole input sequence before yielding the first element.</remarks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggest
This function consumes the whole input sequence before yielding the first element of the reversed sequence.
used @dsyme phrase |
others function who consume the whole input? /cc @vasily-kirichenko @forki @kolektiv |
@7sharp9 identified: sort, foldBack, reduceBack, tryFindBack, findBack, scanBack, tryFindIndexBack, findIndexBack, sortWith, permute, mapFold, mapFoldBack, splitinto |
|
…k, tryFindIndexBack, findIndexBack, sortWith, permute, mapFold, mapFoldBack, splitinto
This looks fine. Since it's just XML documentation I will merge it. |
add xmldoc about Seq.rev consume input sequence
ref #902
phrase is ok?