nullaway/src/main/java/com/uber/nullaway/handlers/StreamNullabilityPropagatorFactory.java [40:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            .withFilterMethodFromSignature("filter(java.util.function.Predicate<? super T>)")
            // Names and relevant arguments of all the methods of java.util.stream.Stream that
            // behave
            // like .map(...) for the purposes of this checker (the listed arguments are those that
            // take the potentially filtered objects from the stream)
            .withMapMethodFromSignature(
                "<R>map(java.util.function.Function<? super T,? extends R>)",
                "apply",
                ImmutableSet.of(0))
            .withMapMethodFromSignature(
                "mapToInt(java.util.function.ToIntFunction<? super T>)",
                "applyAsInt",
                ImmutableSet.of(0))
            .withMapMethodFromSignature(
                "mapToLong(java.util.function.ToLongFunction<? super T>)",
                "applyAsLong",
                ImmutableSet.of(0))
            .withMapMethodFromSignature(
                "mapToDouble(java.util.function.ToDoubleFunction<? super T>)",
                "applyAsDouble",
                ImmutableSet.of(0))
            .withMapMethodFromSignature(
                "forEach(java.util.function.Consumer<? super T>)", "accept", ImmutableSet.of(0))
            .withMapMethodFromSignature(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



test-library-models/src/main/java/com/uber/nullaway/testlibrarymodels/TestLibraryModels.java [101:120]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        .withFilterMethodFromSignature("filter(java.util.function.Predicate<? super T>)")
        .withMapMethodFromSignature(
            "<R>map(java.util.function.Function<? super T,? extends R>)",
            "apply",
            ImmutableSet.of(0))
        .withMapMethodFromSignature(
            "mapToInt(java.util.function.ToIntFunction<? super T>)",
            "applyAsInt",
            ImmutableSet.of(0))
        .withMapMethodFromSignature(
            "mapToLong(java.util.function.ToLongFunction<? super T>)",
            "applyAsLong",
            ImmutableSet.of(0))
        .withMapMethodFromSignature(
            "mapToDouble(java.util.function.ToDoubleFunction<? super T>)",
            "applyAsDouble",
            ImmutableSet.of(0))
        .withMapMethodFromSignature(
            "forEach(java.util.function.Consumer<? super T>)", "accept", ImmutableSet.of(0))
        .withMapMethodFromSignature(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



