2021-04-28 16:49:39 +02:00
``++Collection.removeIf++`` is more readable and less verbose than using the ``++Iterator.remove++`` idiom. It might also be more performant in some cases, particularly for ``++ArrayList++`` instances.
2021-04-28 18:08:03 +02:00
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
2022-02-04 17:28:24 +01:00
[source,java]
2021-04-28 16:49:39 +02:00
----
for (Iterator it = items.iterator(); it.hasNext();) {
if (this.predicate(it.next())) {
2021-06-04 14:23:34 +02:00
it.remove();
}
2021-04-28 16:49:39 +02:00
}
----
2021-04-28 18:08:03 +02:00
2021-06-04 14:23:34 +02:00
== Compliant Solution
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,java]
2021-04-28 16:49:39 +02:00
----
items.removeIf(this::predicate);
----
2021-04-28 18:08:03 +02:00
2021-09-20 15:38:42 +02:00
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
include::highlighting.adoc[]
endif::env-github,rspecator-view[]