You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A transformation extension method works in IntelliJ but not in Eclipse.
Eclipse reports: The method select(Iterator<S>, Function<S,T>) in the type IteratorExtensionMethods is not applicable for the arguments (Iterator<String>)
This is a fundamental part of functional programming covering immutable, deterministic behaviour having no externally visible side affects.
Describe the bug
A transformation extension method works in IntelliJ but not in Eclipse.
Eclipse reports:
The method select(Iterator<S>, Function<S,T>) in the type IteratorExtensionMethods is not applicable for the arguments (Iterator<String>)
This is a fundamental part of functional programming covering immutable, deterministic behaviour having no externally visible side affects.
Is this related to #1441
To Reproduce
Calling code:
calling
.skip(2)
works but calling.where(s -> s != null)
does notExtension method's class
Expected behavior
4, 4, 3 should be written to console
Version info (please complete the following information):
The text was updated successfully, but these errors were encountered: