public static HashSet <T> ToHashSet <T>(this IEnumerable <T> source)
 {
     ArgumentValidator.EnsureArgumentNotNull(source, "source");
     return(new HashSet <T>(source));
 }
 /// <summary>
 /// Converts the sequence to the <see cref="ChainedBuffer{T}"/>.
 /// </summary>
 /// <typeparam name="T">The type of sequence item.</typeparam>
 /// <param name="source">The sequence to convert</param>
 /// <returns>A new <see cref="ChainedBuffer{T}"/> instance containing
 /// all the items from the <paramref name="source"/> sequence.</returns>
 public static ChainedBuffer <T> ToChainedBuffer <T>(this IEnumerable <T> source)
 {
     ArgumentValidator.EnsureArgumentNotNull(source, "source");
     return(new ChainedBuffer <T>(source));
 }
示例#3
0
        // Constructors

        public SynchronousFutureResult(Func <T> worker)
        {
            ArgumentValidator.EnsureArgumentNotNull(worker, "worker");

            this.worker = worker;
        }