LLVM
8.0.1
|
Functions | |
template<typename ContainerTy > | |
auto | adl_begin (ContainerTy &&container) -> decltype(begin(std::forward< ContainerTy >(container))) |
template<typename ContainerTy > | |
auto | adl_end (ContainerTy &&container) -> decltype(end(std::forward< ContainerTy >(container))) |
template<typename T > | |
void | adl_swap (T &&lhs, T &&rhs) noexcept(noexcept(swap(std::declval< T >(), std::declval< T >()))) |
auto llvm::adl_detail::adl_begin | ( | ContainerTy && | container | ) | -> decltype(begin(std::forward<ContainerTy>(container))) |
Definition at line 167 of file STLExtras.h.
References llvm::sys::path::begin(), and llvm::sys::path::end().
Referenced by llvm::adl_begin().
auto llvm::adl_detail::adl_end | ( | ContainerTy && | container | ) | -> decltype(end(std::forward<ContainerTy>(container))) |
Definition at line 175 of file STLExtras.h.
References llvm::sys::path::end(), and std::swap().
Referenced by llvm::adl_end().