Move from Guava functional classes to Java 8+ ones
Basics
Logistics
Basics
Logistics
Description
Move away from the Guava functional programming classes:
Predicate / Predicates
Function / Functions
Supplier
This is very similar to what we did for IDP-1405, with the addition of Supplier.
The Predicate/Function/Supplier changes should be fairly simple, and the few uses of Functions/Predicates seem to be replaceable with trivial lambdas for "always true" (x -> true) and "identity" (x -> x).
Environment
None
Activity
Show:
Ian YoungMarch 13, 2020 at 10:47 AM
Done, commit 9c0c56f19ff6106c82788acd5a0015684b9de1c3 with one exception that will be cleaned up when I finish migrating collection classes.
Move away from the Guava functional programming classes:
Predicate / Predicates
Function / Functions
Supplier
This is very similar to what we did for IDP-1405, with the addition of Supplier.
The Predicate/Function/Supplier changes should be fairly simple, and the few uses of Functions/Predicates seem to be replaceable with trivial lambdas for "always true" (x -> true) and "identity" (x -> x).