The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Visual Studio 2012
Retrieves an iterator to the first element in a specified container.
template<class Container> auto begin(Container& cont) -> decltype(cont.begin()); template<class Container> auto begin(const Container& cont) -> decltype(cont.begin()); template<class Ty, class Size> Ty *begin(Ty (&array)[Size]);