Pacote
    Preparing search index...
    • Iterate over all items in the provided list and evaluates a predicate function for each one, returning a new list containing only filtered items.

      Type Parameters

      • T

      Parameters

      • predicate: PredicateFunction<T>

        Predicate function that receives each item. If the function returns true, the item is included in the filtered list.

      • list: LinkedList<T>

        Linked list.

      Returns LinkedList<T>

      A new list containing only the filtered items.