Class whose instances represent an invocation of a private method. Instances of this
class contain the name of the private method (methodName) and the arguments
to pass to it during the invocation (args).
The type parameter, T, is the return type of the private method.
Attributes
final
Linear Supertypes
AnyRef, Any
Ordering
Alphabetic
By inheritance
Inherited
Hide All
Show all
Invocation
AnyRef
Any
Visibility
Public
All
Instance Constructors
newInvocation(methodName: Symbol, args: Any*)
methodName
a Symbol representing the name of the private method to invoke
args
zero to many arguments to pass to the private method when invoked
Value Members
def!=(arg0: AnyRef): Boolean
Attributes
final
Definition Classes
AnyRef
def!=(arg0: Any): Boolean
Attributes
final
Definition Classes
Any
def##(): Int
Attributes
final
Definition Classes
AnyRef → Any
def==(arg0: AnyRef): Boolean
Attributes
final
Definition Classes
AnyRef
def==(arg0: Any): Boolean
Attributes
final
Definition Classes
Any
valargs: Any*
zero to many arguments to pass to the private method when invoked
Class whose instances represent an invocation of a private method. Instances of this class contain the name of the private method (
methodName
) and the arguments to pass to it during the invocation (args
). The type parameter,T
, is the return type of the private method.