Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The MSDN explains Lookup like this:

A Lookup<TKey, TElement> resembles a Dictionary<TKey, TValue>. The difference is that a Dictionary<TKey, TValue> maps keys to single values, whereas a Lookup<TKey, TElement> maps keys to collections of values.

I don't find that explanation particularly helpful. What is Lookup used for?

share|improve this question

4 Answers

up vote 35 down vote accepted

It's a cross between an IGrouping and a dictionary. It lets you group items together by a key, but then access them via that key in an efficient manner (rather than just iterating over them all, which is what GroupBy lets you do).

For example, you could take a load of .NET types and build a lookup by namespace... then get to all the types in a particular namespace very easily:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml;

public class Test
{
    static void Main()
    {
        // Just types covering some different assemblies
        Type[] sampleTypes = new[] { typeof(List<>), typeof(string), 
                                     typeof(Enumerable), typeof(XmlReader) };

        // All the types in those assemblies
        IEnumerable<Type> allTypes = sampleTypes.Select(t => t.Assembly)
                                               .SelectMany(a => a.GetTypes());

        // Grouped by namespace, but indexable
        ILookup<string, Type> lookup = allTypes.ToLookup(t => t.Namespace);

        foreach (Type type in lookup["System"])
        {
            Console.WriteLine("{0}: {1}", 
                              type.FullName, type.Assembly.GetName().Name);
        }
    }
}

(I'd normally use var for most of these declarations, in normal code.)

share|improve this answer
1  
+1 Awesome Explanation. – Kyle Rozendo Sep 10 '09 at 5:33
18  
I think to make this answer better you could replace some of the vars. For learning purposes I think it is easier to follow, when the types are expressed clearly. Just my 2 cents :) – Alex Baranosky Sep 16 '09 at 3:42
If it has the best of both worlds, then why bother with a Dictionary? – Kyle Baran Mar 21 at 2:30
2  
@KyleBaran: Because it would be pointless for genuine key/value pair collections, where there's only a single value per key. – Jon Skeet Mar 21 at 6:41

One way to think about it is this: Lookup<TKey, TElement> is similar to Dictionary<TKey, Collection<TElement>>. Basically a list of zero or more elements can be returned via the same key.

namespace LookupSample
{
    using System;
    using System.Collections.Generic;
    using System.Linq;

    class Program
    {
        static void Main(string[] args)
        {
            List<string> names = new List<string>();
            names.Add("Smith");
            names.Add("Stevenson");
            names.Add("Jones");

            ILookup<char, string> namesByInitial = names.ToLookup((n) => n[0]);

            // count the names
            Console.WriteLine("J's: {0}", namesByInitial['J'].Count());
            Console.WriteLine("S's: {0}", namesByInitial['S'].Count());
            Console.WriteLine("Z's: {0}", namesByInitial['Z'].Count());
        }
    }
}
share|improve this answer
Can there be zero elements in a lookup result? How would you get that? (Lookup is publicly immutable as far as I can tell, and I don't think ToLookup would effectively invent keys.) – Jon Skeet Sep 10 '09 at 5:32
1  
Technically, yes, since a Lookup returns an empty collection for a non-existent key (I edited my post to add a code sample that shows this). – bobbymcr Sep 10 '09 at 5:49

I haven't successfully used it before, but here is my go:

A Lookup<TKey, TElement> would behave pretty much like a (relational) database index on a table without a unique constraint. Use it in the same places you would use the other.

share|improve this answer

I guess you could argue it this way: imagine you're creating a data structure to hold the contents of a phone book. You want to key by lastName and then by firstName. Using a dictionary here would be dangerous because many people can have the same name. So a Dictionary will always, at most, map to a single value.

A Lookup will map to potentially several values.

Lookup["Smith"]["John"] will be a collection of size one billion.

share|improve this answer
Your answer inspired my follow-up question "How ToLookup() with multiple indexes?". How can I reproduce such, with multiple indexes, lookup? Could you answer it possibly using any other sample or reference where it is possible to use Lookup["Smith"]["John"] ? – Fulproof Apr 1 at 3:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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