You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add missing <returns> XML tags to singleton, isEmpty, length, lengthOrMax, lengthBy, lengthByAsync
Six members in TaskSeq.fsi were missing <returns> XML documentation
tags, making the IntelliSense and generated API docs incomplete.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
///<returns>A task returning the actual length of the sequence,or <paramref name="max" />if the sequence is longer than <paramref name="max" />.</returns>
142
146
///<exception cref="T:ArgumentNullException">Thrown when the input task sequence is null.</exception>
143
147
static member lengthOrMax:max:int ->source:TaskSeq<'T> ->Task<int>
144
148
@@ -150,6 +154,7 @@ type TaskSeq =
150
154
///
151
155
///<param name="predicate">A function to test whether an item in the input sequence should be included in the count.</param>
0 commit comments