Iterate over all items in the provided list and evaluates a predicate function for each one, returning a new list containing only filtered items.
Predicate function that receives each item. If the function returns true, the item is included in the filtered list.
true
Linked list.
A new list containing only the filtered items.
Iterate over all items in the provided list and evaluates a predicate function for each one, returning a new list containing only filtered items.