I would like to implement the show method for (binary) functions and make it able to distingish endofunctions (a -> a).
Something like the pseudo-haskell code:
instance Show (a->b) where
show fun = "<<Endofunction>>" if a==b
show fun = "<<Function>>" if a\=b
How can I distinguish the two cases?

Showinstance at all. You should rather write something likeisEndo :: (a->b) -> Bool, and then use a simple guard to create the suitable text where you want it. – leftaroundabout Jun 3 '12 at 13:30const 3an endofunction or a function? – Daniel Wagner Jun 3 '12 at 18:14