فهرست منبع

Add review comment to StartWith.

Bart De Smet 7 سال پیش
والد
کامیت
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)