Returns a copy of TupleList1 where the first
occurrence of a tuple whose Nth element compares equal to
@@ -266,7 +266,7 @@ flatmap(Fun, List1) ->
Map a function over a list of tuples
- 1..tuple_size(Tuple)
+ 1..tuple_size(Tuple)
Returns a list of tuples where, for each tuple in
TupleList1, the Nth element Term1 of the tuple
@@ -298,7 +298,7 @@ flatmap(Fun, List1) ->
Merge two key-sorted lists of tuples
- 1..tuple_size(Tuple)
+ 1..tuple_size(Tuple)
Returns the sorted list formed by merging TupleList1
and TupleList2. The merge is performed on
@@ -312,7 +312,7 @@ flatmap(Fun, List1) ->
Replace an element in a list of tuples
- 1..tuple_size(Tuple)
+ 1..tuple_size(Tuple)
Returns a copy of TupleList1 where the first
occurrence of a T tuple whose Nth element
@@ -342,7 +342,7 @@ flatmap(Fun, List1) ->
Sort a list of tuples
- 1..tuple_size(Tuple)
+ 1..tuple_size(Tuple)
Returns a list containing the sorted elements of the list
TupleList1. Sorting is performed on the Nth
@@ -352,7 +352,7 @@ flatmap(Fun, List1) ->
Store an element in a list of tuples
- 1..tuple_size(Tuple)
+ 1..tuple_size(Tuple)
Returns a copy of TupleList1 where the first
occurrence of a tuple T whose Nth element
@@ -366,7 +366,7 @@ flatmap(Fun, List1) ->
Extract an element from a list of tuples
- 1..tuple_size(Tuple)
+ 1..tuple_size(Tuple)
Searches the list of tuples TupleList1 for a tuple
whose Nth element compares equal to Key.
@@ -500,7 +500,7 @@ flatmap(Fun, List1) ->
Return the Nth element of a list
- 1..length(List)
+ 1..length(List)
Returns the Nth element of List. For example:
@@ -511,7 +511,7 @@ c
Return the Nth tail of a list
- 0..length(List)
+ 0..length(List)
Returns the Nth tail of List, that is, the sublist of
List starting at N+1 and continuing up to
@@ -630,7 +630,7 @@ length(lists:seq(From, To, Incr)) == (To-From+Incr) div Incr
Split a list into two lists
- 0..length(List1)
+ 0..length(List1)
Splits List1 into List2 and List3.
List2 contains the first N elements and
@@ -670,7 +670,7 @@ splitwith(Pred, List) ->
Return a sub-list starting at a given position and with a given number of elements
- 1..(length(List1)+1)
+ 1..(length(List1)+1)
Returns the sub-list of List1 starting at Start
and with (max) Len elements. It is not an error for
@@ -732,7 +732,7 @@ splitwith(Pred, List) ->
Merge two key-sorted lists of tuples, removing duplicates
- 1..tuple_size(Tuple)
+ 1..tuple_size(Tuple)
Returns the sorted list formed by merging TupleList1
and TupleList2. The merge is performed on the
@@ -746,7 +746,7 @@ splitwith(Pred, List) ->
Sort a list of tuples, removing duplicates
- 1..tuple_size(Tuple)
+ 1..tuple_size(Tuple)
Returns a list containing the sorted elements of the list
TupleList1 where all but the first tuple of the
--
cgit v1.2.3