Is there any good way to get rid of the possibility of application to strings of the greater smaller comparison operators and the min max functions? Like aliasing? The problem is that the behaviour is just not useful to me.
So that '17'<'9' gives an error and not the (for me) beautifully useless and confusing results it does now? This has caused trouble for me multiple times in the form of:
'17'<'9'
True
I mean i could alias them to throw an exception if strings are used I guess but I would like a canonical way if that exsists.
Please don't explain lexicographical ordering or int() to me...