@@ -36,6 +36,12 @@ public static partial class Parallel
3636 public static System . Threading . Tasks . ParallelLoopResult ForEach < TSource , TLocal > ( System . Collections . Generic . IEnumerable < TSource > source , System . Func < TLocal > localInit , System . Func < TSource , System . Threading . Tasks . ParallelLoopState , TLocal , TLocal > body , System . Action < TLocal > localFinally ) { throw null ; }
3737 public static System . Threading . Tasks . ParallelLoopResult ForEach < TSource , TLocal > ( System . Collections . Generic . IEnumerable < TSource > source , System . Threading . Tasks . ParallelOptions parallelOptions , System . Func < TLocal > localInit , System . Func < TSource , System . Threading . Tasks . ParallelLoopState , long , TLocal , TLocal > body , System . Action < TLocal > localFinally ) { throw null ; }
3838 public static System . Threading . Tasks . ParallelLoopResult ForEach < TSource , TLocal > ( System . Collections . Generic . IEnumerable < TSource > source , System . Threading . Tasks . ParallelOptions parallelOptions , System . Func < TLocal > localInit , System . Func < TSource , System . Threading . Tasks . ParallelLoopState , TLocal , TLocal > body , System . Action < TLocal > localFinally ) { throw null ; }
39+ public static System . Threading . Tasks . Task ForEachAsync < TSource > ( System . Collections . Generic . IEnumerable < TSource > source , System . Func < TSource , CancellationToken , ValueTask > body ) { throw null ; }
40+ public static System . Threading . Tasks . Task ForEachAsync < TSource > ( System . Collections . Generic . IEnumerable < TSource > source , CancellationToken cancellationToken , System . Func < TSource , CancellationToken , ValueTask > body ) { throw null ; }
41+ public static System . Threading . Tasks . Task ForEachAsync < TSource > ( System . Collections . Generic . IEnumerable < TSource > source , System . Threading . Tasks . ParallelOptions parallelOptions , System . Func < TSource , CancellationToken , ValueTask > body ) { throw null ; }
42+ public static System . Threading . Tasks . Task ForEachAsync < TSource > ( System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , CancellationToken , ValueTask > body ) { throw null ; }
43+ public static System . Threading . Tasks . Task ForEachAsync < TSource > ( System . Collections . Generic . IAsyncEnumerable < TSource > source , CancellationToken cancellationToken , System . Func < TSource , CancellationToken , ValueTask > body ) { throw null ; }
44+ public static System . Threading . Tasks . Task ForEachAsync < TSource > ( System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Threading . Tasks . ParallelOptions parallelOptions , System . Func < TSource , CancellationToken , ValueTask > body ) { throw null ; }
3945 public static System . Threading . Tasks . ParallelLoopResult For < TLocal > ( int fromInclusive , int toExclusive , System . Func < TLocal > localInit , System . Func < int , System . Threading . Tasks . ParallelLoopState , TLocal , TLocal > body , System . Action < TLocal > localFinally ) { throw null ; }
4046 public static System . Threading . Tasks . ParallelLoopResult For < TLocal > ( int fromInclusive , int toExclusive , System . Threading . Tasks . ParallelOptions parallelOptions , System . Func < TLocal > localInit , System . Func < int , System . Threading . Tasks . ParallelLoopState , TLocal , TLocal > body , System . Action < TLocal > localFinally ) { throw null ; }
4147 public static System . Threading . Tasks . ParallelLoopResult For < TLocal > ( long fromInclusive , long toExclusive , System . Func < TLocal > localInit , System . Func < long , System . Threading . Tasks . ParallelLoopState , TLocal , TLocal > body , System . Action < TLocal > localFinally ) { throw null ; }
0 commit comments