lists_to_list_of_tuples/2 | Transforms two lists into one list of two-tuples, where the first element of each tuple is taken from the first list and the second element is taken from the second list one by one. |
lists_to_list_of_tuples/3 | Transforms three lists into one list of three-tuples, where the first element of each tuple is taken from the first list, the second element is taken from the second list one by one, and the third element is taken from the third list one by one. |
search/2 | If there is a Value in List such that Pred(Value) returns true, returns {value, Value} for the first such Value, otherwise returns false. |
split_list_into_chunks/2 | Splits List into list of lists [List1, List2, ..., ListN] where List1, List2, ..., ListN are lists with maximum MaxLen elements. |
lists_to_list_of_tuples(List1::list(), List2::list()) -> List3::[tuple()]
Transforms two lists into one list of two-tuples, where the first element of each tuple is taken from the first list and the second element is taken from the second list one by one.
lists_to_list_of_tuples(List1::list(), List2::list(), List3::list()) -> List4::[tuple()]
Transforms three lists into one list of three-tuples, where the first element of each tuple is taken from the first list, the second element is taken from the second list one by one, and the third element is taken from the third list one by one.
search(Pred, List) -> {value, Value} | false
If there is a Value in List such that Pred(Value) returns true, returns {value, Value} for the first such Value, otherwise returns false. Since OTP 21.0 use BIF lists:search/2 instead.
split_list_into_chunks(List::list(), MaxLen::pos_integer()) -> List2::list()
Splits List into list of lists [List1, List2, ..., ListN] where List1, List2, ..., ListN are lists with maximum MaxLen elements.
Generated by EDoc