#include <algorithm>
#include <iterator>
#include <string>
#include <string_view>
#include <type_traits>
Go to the source code of this file.
|
template<typename Container , typename U , typename = std::enable_if_t< contains_internal_impl::HasFindImpl<Container, U>::value && (!contains_internal_impl::IsString<Container>::value && !contains_internal_impl::IsStringView<Container>::value), void>> |
constexpr bool | cuttlefish::Contains (Container &&container, U &&u) |
|
template<typename T > |
constexpr bool | cuttlefish::Contains (const std::string &s, T &&t) |
|
template<typename T > |
constexpr bool | cuttlefish::Contains (const std::string_view &s, T &&t) |
|