Mercurial > pub > ImplabNet
diff Implab/Parallels/ArrayTraits.cs @ 26:f0bf98e4d22c
refactoring
author | cin |
---|---|
date | Fri, 21 Feb 2014 03:15:28 +0400 |
parents | 9bf5b23650c9 |
children | 2fad2d1f4b03 |
line wrap: on
line diff
--- a/Implab/Parallels/ArrayTraits.cs Thu Feb 06 01:08:59 2014 +0400 +++ b/Implab/Parallels/ArrayTraits.cs Fri Feb 21 03:15:28 2014 +0400 @@ -125,7 +125,7 @@ return iter.Promise; } - public static Promise<TDst[]> ChainedMap<TSrc, TDst>(this TSrc[] source, ChainedOperation<TSrc, TDst> transform, int threads) { + public static IPromise<TDst[]> ChainedMap<TSrc, TDst>(this TSrc[] source, ChainedOperation<TSrc, TDst> transform, int threads) { if (source == null) throw new ArgumentNullException("source"); if (transform == null)