Are there intensions in future versions to make it...
# language-proposals
f
Are there intensions in future versions to make it possible to call SAM types using the
( )
notation? ergo a java 8 Function could be called like
function(x)
instead of
function.apply(x)
although it defines an
apply
method instead of
invoke
. I know it can be implemented using our own extensions, just asking if there are plans for adding such extensions to the standard lib/change the language to enable that.