Reading this post he speaks about "Methods Values" but right in the next paragraph he says that "A Method Type is a non-value type. That means there is no value". Isn't this contradictory? In Scala, does a method have a value or not?
I know that we can't assign a method to a variable (without turning it into a function by using _
), isn't this enough to say that a method does not have a value?