Sometimes, exploring java libraries I see code like this:
interface IIfc<C extends IIfc<C>> {}
Which is the purpose of take a generic that inheriths from itself?
Sometimes, exploring java libraries I see code like this:
interface IIfc<C extends IIfc<C>> {}
Which is the purpose of take a generic that inheriths from itself?