Records

Functions

  • template <typename C>
    ContainerIter<C> c_begin (C & c)

    container_algorithm_internal::c_begin and

    container_algorithm_internal::c_end are abbreviations for proper ADL

    lookup of std::begin and std::end, i.e.

    using std::begin;

    using std::end;

    std::foo(begin(c), end(c));

    becomes

    std::foo(container_algorithm_internal::begin(c),

    container_algorithm_internal::end(c));

    These are meant for internal use only.

    Defined at line 100 of file ../../third_party/abseil-cpp/absl/algorithm/container.h

  • template <typename C>
    ContainerIter<C> c_end (C & c)

    Defined at line 105 of file ../../third_party/abseil-cpp/absl/algorithm/container.h