I found that there is a "||" in list manipulation, so what does the "||" mean ? thanks! Are there any examples about "||" ?
lists:sum([A*B || {A, B} <- Foo]).
|
I found that there is a "||" in list manipulation, so what does the "||" mean ? thanks! Are there any examples about "||" ?
|
|||
|
|
|
It is used in List comprehensions. List comprehensions is a shorter way to create lists without having to use funs, maps or filters. From Programming Erlang: If we have a list L:
And we want to double every element, we can do:
But with List comprehensions we can do:
|
||||
|
|
|
Nomenclature most likely comes from mathematical notion of sets, where || means "such that". F = {n2 − 4 : n is an integer; and 0 ≤ n ≤ 19} In this notation, the colon (":") means "such that", and the description can be interpreted as "F is the set of all numbers of the form n2 − 4, such that n is a whole number in the range from 0 to 19 inclusive." Sometimes the vertical bar ("|") is used instead of the colon. Applying same thing to
means:- generate A*B such that A and B belong to list of tuples "Foo" |
|||
|