Lines Matching defs:container
329 // modifier) RawContainer that's either an STL-style container or a
333 // - type is a type that provides an STL-style container view to
334 // (i.e. implements the STL container concept for) RawContainer;
338 // container view to raw_container, which is a RawContainer.
339 // - Copy(raw_container) returns an STL-style container view of a
343 // STL-style container.
350 static const_reference ConstReference(const RawContainer& container) {
353 return container;
355 static type Copy(const RawContainer& container) { return container; }