Skip to content

Tag: functional-programming

Map getOrDefault VS getOrUseSupplier

I am starting to learn lambdas and i do not understand why java Map has: and not(working just the same, but if value is absent, then defaultValue will be taken from supplier): Adventages i currently see of current solution: defaultValue does not have to be a final/effectively final value looks simpler & n…