Lines Matching defs:base
54 // Q. Should I use std::list or base::LinkedList?
56 // A. The main reason to use base::LinkedList over std::list is
60 // Comparing the performance of base::LinkedList<T> to std::list<T*>:
62 // * Erasing an element of type T* from base::LinkedList<T> is
67 // * Insertion operations with base::LinkedList<T> never require
70 // Q. How does base::LinkedList implementation differ from std::list?
75 // With base::LinkedList<T>, the type being inserted already reserves
76 // space for the "next" and "previous" pointers (base::LinkNode<T>*).
81 namespace base {
170 } // namespace base