You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
typedefs don't yield typesafe code. This essentially means each iterator "node" is a Dynamic object which is slow. I recommend using private class HasNext<T> instead of typedef.
The text was updated successfully, but these errors were encountered:
I think we should get rid of GenericListIterator at all and provide strictly typed inlineable iterators for each collection. I'm not sure if I'll find time/motivation to work on that soon, but that's how it should be done it seems.
typedefs don't yield typesafe code. This essentially means each iterator "node" is a Dynamic object which is slow. I recommend using
private class HasNext<T>
instead of typedef.The text was updated successfully, but these errors were encountered: