In a piece of Java code I inherited, I encountered the following what seems to be a Lambda expression:
id ->""
Appearing as a parameter to a method:
runner.setIntanceName(id ->"")
I consulted the Lambda Expressions documentation but could not find the meaning of this special expression.
What does id ->"" mean?
idbecomes""