pub trait MagicArgs { // Required method fn apply<C, T>(self, f: C) -> C::Output where C: Callable<Self, T>, Self: Sized; }
A convinience trait to provide the args.apply(f) syntax.
args.apply(f)
Apply f on self.
self
Equivalent to: apply(f, self).
apply(f, self)
See: apply.
apply