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
Currently fully-qualified names of collections contain the name of the collection twice, e.g. collections::btree::BTree. This extra btree does not appear to serve any purpose. There would be no name collisions if all collections are placed directly into the root namespace, as all functionality is implemented as methods. The sub-modules could be left for things like collections::dlist::Items, whereas collections::dlist::DList should become just collections::DList.
The text was updated successfully, but these errors were encountered:
Currently fully-qualified names of collections contain the name of the collection twice, e.g.
collections::btree::BTree
. This extrabtree
does not appear to serve any purpose. There would be no name collisions if all collections are placed directly into the root namespace, as all functionality is implemented as methods. The sub-modules could be left for things likecollections::dlist::Items
, whereascollections::dlist::DList
should become justcollections::DList
.The text was updated successfully, but these errors were encountered: