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
* Add AsyncSeq.head, iteri, find, tryFindAsync, tail
Five new combinators mirroring standard F# module functions:
- head: returns first element; raises InvalidOperationException on empty (mirrors Seq.head)
- iteri: sync iteration with element index exposed in .fsi (was already implemented but not exported)
- find: returns first matching element; raises KeyNotFoundException if no match (mirrors Seq.find)
- tryFindAsync: async-predicate variant of tryFind, returning option
- tail: returns sequence without first element (mirrors Seq.tail / List.tail)
11 new tests added; all 248 tests pass.
Co-authored-by: Copilot <[email protected]>
* ci: trigger CI checks
---------
Co-authored-by: Repo Assist <[email protected]>
Co-authored-by: Copilot <[email protected]>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
0 commit comments