소스 검색

Add review comment to StartWith.

Bart De Smet 6 년 전
부모
커밋
a2845c9de7
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      Ix.NET/Source/System.Interactive.Async/System/Linq/Operators/StartWith.cs

+ 3 - 0
Ix.NET/Source/System.Interactive.Async/System/Linq/Operators/StartWith.cs

@@ -8,6 +8,9 @@ namespace System.Linq
 {
     public static partial class AsyncEnumerableEx
     {
+        // REVIEW: This is really an n-ary Prepend. Should we add n-ary overloads of Append and Prepend as well?
+        //         If so, likely in Ix rather than System.Linq.Async.
+
         public static IAsyncEnumerable<TSource> StartWith<TSource>(this IAsyncEnumerable<TSource> source, params TSource[] values)
         {
             if (source == null)