Hi, I just stumbled upon your website, looks interesting.
I have a couple of questions.
How do u deal with unbound wildcards and generic covariance and contravariance?
Can I do this
Something<Son> objSon = new Something<Son>();
Something<Father> objFather = objSon, where
Class Son extends Father
{}
and also
Do u support Something<?> ?
thanks.