Makes "apply" calls explicit.

Concealed apply calls might be misleading and hard to understand at a glance.

Before:
foo("bar")

After:
foo.apply("bar")