I would like a notational way of referencing a particular function object, without naming it anything in particular.
For example, the statement
$f:\mathbb{R}\rightarrow \mathbb{R}, f(x) = x^2$
Makes the name f an identifier for the function object having:
- domain $\mathbb{R}$
- codomain $\mathbb{R}$
and behaving according to a certain function rule. However, is there a notation that will expand to a function object itself, without giving it a name? So that we can then write
$f = \mathrm{somenotation}$
to set $f$ to that function object?
You could try $$ x \in \mathbb R \mapsto x^2 \in \mathbb R$$