This might seem like a weird question, but is it actually possible to define a function for all possible inputs? By this, I really mean /all/ possible inputs, including numbers, true and false, sets, sets of sets, other functions, itself---everything. To me, this doesn't seem problematic, but maybe there's some kind of subtle reason why this cannot be done. Here's an example (maybe) of a function defined for all possible inputs:
$F(x) = \mathbf{true} \text{, if } x = 0 \\ F(x) = \mathbf{true} \text{, if } x = 1 \\ F(x) = \mathbf{false} \text{, otherwise.}$
Is there anything wrong with that?