-
Notifications
You must be signed in to change notification settings - Fork 10.9k
BridgeMethodInjectorOpportunities
Chaoren Lin edited this page Nov 17, 2023
·
5 revisions
Where might we use the Bridge Method Injector in Guava?
We're not yet sure whether we want to use it at all, but part of making that decision will be having a list of possible uses in front of us.
Note that any of these changes might introduce source incompatibilities (e.g.,
for people who call ImmutableSet.of(immediateFuture(...)))
.
-
Iterables.(various)
->FluentIterable
-
ImmutableMultiset.elementSet
->ImmutableSet
-
Iterators.forArray, singletonIterator
->UnmodifiableListIterator
-
Splitter.split
->List
(orFluentIterable
if we could depend oncollect
frombase
) -
Sets.filter
(etc.) ->SetView
-
Futures.immediate*Future
->ListenableScheduledFuture
?
- Introduction
- Basic Utilities
- Collections
- Graphs
- Caches
- Functional Idioms
- Concurrency
- Strings
- Networking
- Primitives
- Ranges
- I/O
- Hashing
- EventBus
- Math
- Reflection
- Releases
- Tips
- Glossary
- Mailing List
- Stack Overflow
- Android Overview
- Footprint of JDK/Guava data structures