According to this article on denotational semantics for Haskell there is only one non-strict (non-bottom prreserving) function from Int to Int.
to quote:
it happens that there is only one prototype of a non-strict function of type Integer -> Integer:
one x = 1
Its variants are constk x = k for every concrete number k. Why are these the only ones possible? Remember that one n can be no less defined than one ⊥. As Integer is a flat domain, both must be equal.
Essentially it says that the only non-strict functions of that type signature can only be the constant functions. I don't follow this argument. I'm also unsure what is meant by a flat domain, the rest of the article leads to believe that it simply means that the poset of values has only one node: bottom.
Does something similar occur for function going from A->A, or A->B? That is they must be constant functions?