We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Map
The Map implementation will take a KEY and java.util.function.Supplier as the VALUE mapped to the KEY.
java.util.function.Supplier
Each time Map.get(KEY), is called, the Supplier will be invoked to "supply" possibly a new value on each invocation.
Map.get(KEY)
Supplier
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
Map
implementation will take a KEY andjava.util.function.Supplier
as the VALUE mapped to the KEY.Each time
Map.get(KEY)
, is called, theSupplier
will be invoked to "supply" possibly a new value on each invocation.The text was updated successfully, but these errors were encountered: