up vote 4 down vote favorite
1

Python's zip function does the following:

a = [1, 2, 3]
b = [6, 7, 8]
zipped = zip(a, b)

result

[[1, 6], [2, 7], [3, 8]]
link|flag

1  
Note that zip can take any number of arguments, not just two, as in this example. The answers so far are focused on this two-iterable case, it seems to me. – Jeffrey Harris Mar 12 at 0:42
@Jeffrey well reminded. – Jader Dias Mar 12 at 12:37

4 Answers

up vote 5 down vote accepted

How about this?

C# 4.0 LINQ'S NEW ZIP OPERATOR

public static IEnumerable<TResult> Zip<TFirst, TSecond, TResult>(
        this IEnumerable<TFirst> first,
        IEnumerable<TSecond> second,
        Func<TFirst, TSecond, TResult> func);
link|flag
Beautiful!!!!!! – Jader Dias Mar 11 at 17:07
up vote 5 down vote

Solution 2: Similar to C# 4.0 Zip, but you can use it in C# 3.0

    public static IEnumerable<TResult> Zip<TFirst, TSecond, TResult>(
        this IEnumerable<TFirst> first,
        IEnumerable<TSecond> second,
        Func<TFirst, TSecond, TResult> func)
    {
        using(var enumeratorA = first.GetEnumerator())
        using(var enumeratorB = second.GetEnumerator())
        {
            while (enumeratorA.MoveNext())
            {
                enumeratorB.MoveNext();
                yield return func(enumeratorA.Current, enumeratorB.Current);
            }
        }
    }
link|flag
it throws exceptions when second is shorter than first, as expected – Jader Dias Mar 11 at 17:21
4  
You've forgotten to dispose your enumerators. – Eric Lippert Mar 11 at 20:24
@Eric thanks for the correction. I edited the answer – Jader Dias Mar 11 at 23:40
up vote 2 down vote

Solution 1:

IEnumerable<KeyValuePair<T1, T2>> Zip<T1, T2>(
    IEnumerable<T1> a, IEnumerable<T2> b)
{
    var enumeratorA = a.GetEnumerator();
    var enumeratorB = b.GetEnumerator();
    while (enumeratorA.MoveNext())
    {
        enumeratorB.MoveNext();
        yield return new KeyValuePair<T1, T2>
        (
            enumeratorA.Current,
            enumeratorB.Current
        );
    }
}
link|flag
up vote 1 down vote

Also take a look at Cadenza which has all sorts of nifty utility methods.

Specifically look at the Zip extension methods here: http://gitorious.org/cadenza/cadenza/blobs/master/src/Cadenza/Cadenza.Collections/Enumerable.cs#line1303

link|flag

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.