ApplyMethods (original) (raw)
scala.quoted.Quotes.reflectModule.ApplyMethods
Extension methods of Apply
Attributes
Source
Graph
Supertypes
Members list
The arguments (implicitly) passed to the method
The arguments (implicitly) passed to the method
The Apply
may be a partially applied method:
def f(x1: Int)(x2: Int) = ???
f(1)(2)
args
is(2)
in theApply
off(1)(2)
args
is(1)
in theApply
off(1)
Attributes
Source
The fun
part of an (implicit) application like fun(args)
The fun
part of an (implicit) application like fun(args)
It may be a partially applied method:
def f(x1: Int)(x2: Int) = ???
f(1)(2)
fun
isf(1)
in theApply
off(1)(2)
fun
isf
in theApply
off(1)
Attributes
Source
In this article