Rahul Sharma (Editor)

List comprehension

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

A list comprehension is a syntactic construct available in some programming languages for creating a list based on existing lists. It follows the form of the mathematical set-builder notation (set comprehension) as distinct from the use of map and filter functions.

Contents

Overview

Consider the following example in set-builder notation.

S = { 2 x x N ,   x 2 > 3 }

This can be read, " S is the set of all numbers "2 times x " where x is an item in the set of natural numbers ( N ), for which x squared is greater than 3 ."

The smallest natural number, x = 1, fails to satisfy the condition x2>3 (the condition 12>3 is false) so 2 ·1 is not included in S. The next natural number, 2, does satisfy the condition (22>3) as does every other natural number. Thus S consists of 2 ·2, 2 ·3, 2 ·4... so S = 4, 6, 8, 10,... i.e., all even numbers greater than 2.

In this annotated version of the example:

S = { 2 x output expression x variable N input set ,   x 2 > 3 predicate }
  • x is the variable representing members of an input set.
  • N represents the input set, which in this example is the set of natural numbers
  • x 2 > 3 is a predicate expression acting as a filter on members of the input set.
  • 2 x is an output expression producing members of the new set from members of the input set that satisfy the predicate expression.
  • { } braces indicate that the result is a set
  • , the vertical bar and the comma are separators.
  • A list comprehension has the same syntactic components to represent generation of a list in order from an input list or iterator:

  • A variable representing members of an input list.
  • An input list (or iterator).
  • An optional predicate expression.
  • And an output expression producing members of the output list from members of the input iterable that satisfy the predicate.
  • The order of generation of members of the output list is based on the order of items in the input.

    In Haskell's list comprehension syntax, this set-builder construct would be written similarly, as:

    Here, the list [0..] represents N , x^2>3 represents the predicate, and 2*x represents the output expression.

    List comprehensions give results in a defined order (unlike the members of sets); and list comprehensions may generate the members of a list in order, rather than produce the entirety of the list thus allowing, for example, the previous Haskell definition of the members of an infinite list.

    History

    The SETL programming language (1969) has a set formation construct which is similar to list comprehensions. This code prints all prime numbers from 2 to N:

    print([n in [2..N] | forall m in {2..n - 1} | n mod m > 0]);

    The computer algebra system AXIOM (1973) has a similar construct that processes streams, but the first use of the term "comprehension" for such constructs was in Rod Burstall and John Darlington's description of their functional programming language NPL from 1977.

    Smalltalk block context messages which constitute list comprehensions have been in that language since at least Smalltalk-80.

    Burstall and Darlington's work with NPL influenced many functional programming languages during the 1980s, but not all included list comprehensions. An exception was the influential pure lazy functional programming language Miranda, which was released in 1985. The subsequently developed standard pure lazy functional language Haskell includes many of Miranda's features, including list comprehensions.

    Comprehensions were proposed as a query notation for databases and were implemented in the Kleisli database query language.

    Monad comprehension

    In Haskell, a monad comprehension is a generalization of the list comprehension to other monads in functional programming.

    Set comprehension

    Version 3.x and 2.7 of the Python language introduces syntax for set comprehensions. Similar in form to list comprehensions, set comprehensions generate Python sets instead of lists.

    Racket set comprehensions generate Racket sets instead of lists.

    Dictionary comprehension

    Version 3.x and 2.7 of the Python language introduced a new syntax for dictionary comprehensions, similar in form to list comprehensions but which generate Python dicts instead of lists.

    Racket hash table comprehensions generate Racket hash tables (one implementation of the Racket dictionary type).

    Parallel list comprehension

    The Glasgow Haskell Compiler has an extension called parallel list comprehension (also known as zip-comprehension) that permits multiple independent branches of qualifiers within the list comprehension syntax. Whereas qualifiers separated by commas are dependent ("nested"), qualifier branches separated by pipes are evaluated in parallel (this does not refer to any form of multithreadedness: it merely means that the branches are zipped).

    Racket's comprehensions standard library contains parallel and nested versions of its comprehensions, distinguished by "for" vs "for*" in the name. For example, the vector comprehensions "for/vector" and "for*/vector" create vectors by parallel versus nested iteration over sequences. The following is Racket code for the Haskell list comprehension examples.

    In Python we could do as follows:

    XQuery and XPath

    Like the original NPL use, these are fundamentally database access languages.

    This makes the comprehension concept more important, because it is computationally infeasible to retrieve the entire list and operate on it (the initial 'entire list' may be an entire XML database).

    In XPath, the expression:

    is conceptually evaluated as a series of "steps" where each step produces a list and the next step applies a filter function to each element in the previous step's output.

    In XQuery, full XPath is available, but FLWOR statements are also used, which is a more powerful comprehension construct.

    Here the XPath //book is evaluated to create a sequence (aka list); the where clause is a functional "filter", the order by sorts the result, and the <shortBook>...</shortBook> XML snippet is actually an anonymous function that builds/transforms XML for each element in the sequence using the 'map' approach found in other functional languages.

    So, in another functional language the above FLWOR statement may be implemented like this:

    LINQ in C#

    C# 3.0 has a group of related features called LINQ, which defines a set of query operators for manipulating object enumerations.

    It also offers an alternative comprehension syntax, reminiscent of SQL:

    LINQ provides a capability over typical List Comprehension implementations. When the root object of the comprehension implements the IQueryable interface, rather than just executing the chained methods of the comprehension, the entire sequence of commands are converted into an Abstract Syntax Tree (AST) object, which is passed to the IQueryable object to interpret and execute.

    This allows, amongst other things, for the IQueryable to

  • rewrite an incompatible or inefficient comprehension
  • translate the AST into another query language (e.g. SQL) for execution
  • C++

    C++ does not have any language features directly supporting list comprehensions but operator overloading (e.g., overloading |, >>, >>=) has been used successfully to provide expressive syntax for "embedded" query DSLs. Alternatively, list comprehensions can be constructed using the erase-remove idiom to select elements in a container and the STL algorithm for_each to transform them.

    There is some effort in providing C++ with list-comprehension constructs/syntax similar to the set builder notation.

  • In Boost.Range [1] library there is a notion of adaptors [2] that can be applied to any range and do filtering, transformation etc. With this library, the original Haskell example would look like (using Boost.Lambda [3] for anonymous filtering and transforming functions) (Full example):
  • This implementation uses a macro and overloads the << operator. It evaluates any expression valid inside an 'if', and any variable name may be chosen. It's not threadsafe, however. Usage example:
  • This implementation provides head/tail slicing using classes and operator overloading, and the | operator for filtering lists (using functions). Usage example:
  • Language for Embedded Query and Traversal (LEESA) is an embedded DSL in C++ that implements X-Path-like queries using operator overloading. The queries are executed on richly typed xml trees obtained using xml-to-c++ binding from an XSD. There is absolutely no string encoding. Even the names of the xml tags are classes and therefore, there is no way for typos. If a LEESA expression forms an incorrect path that does not exist in the data model, the C++ compiler will reject the code.
    Consider a catalog xml.
  • LEESA provides >> for X-Path's / separator. Interestingly, X-Path's // separator that "skips" intermediate nodes in the tree is implemented in LEESA using what's known as Strategic Programming. In the example below, catalog_, book_, author_, and name_ are instances of catalog, book, author, and name classes, respectively.

    References

    List comprehension Wikipedia