Function end
Summary
#include <include/EASTL/string.h>
(1) iterator end() EA_NOEXCEPT
(2) const_iterator end() const EA_NOEXCEPT
Function overload
Synopsis
#include <include/EASTL/string.h>
iterator end() EA_NOEXCEPT
Description
No description yet.
Source
Lines 1054-1059 in include/EASTL/string.h. Line 578 in include/EASTL/string.h.
template <typename T, typename Allocator>
inline typename basic_string<T, Allocator>::iterator
basic_string<T, Allocator>::end() EA_NOEXCEPT
{
return internalLayout().EndPtr();
}
Synopsis
#include <include/EASTL/string.h>
const_iterator end() const EA_NOEXCEPT
Description
No description yet.
Source
Lines 1078-1083 in include/EASTL/string.h. Line 579 in include/EASTL/string.h.
template <typename T, typename Allocator>
inline typename basic_string<T, Allocator>::const_iterator
basic_string<T, Allocator>::end() const EA_NOEXCEPT
{
return internalLayout().EndPtr();
}