Lines Matching defs:container
327 // modifier) RawContainer that's either an STL-style container or a
331 // - type is a type that provides an STL-style container view to
332 // (i.e. implements the STL container concept for) RawContainer;
336 // container view to raw_container, which is a RawContainer.
337 // - Copy(raw_container) returns an STL-style container view of a
341 // STL-style container.
348 static const_reference ConstReference(const RawContainer& container) {
351 return container;
353 static type Copy(const RawContainer& container) { return container; }