VIPRA Documentation
Loading...
Searching...
No Matches
include
vipra
concepts
string_view.hpp
1
#pragma once
2
3
#include <concepts>
4
#include <string_view>
5
#include <type_traits>
6
7
namespace
VIPRA::Concepts {
8
template
<
typename
type_t>
9
concept
StringView
= std::is_same_v<type_t, std::string_view> ||
10
std::is_convertible_v<type_t, std::string_view>;
11
}
VIPRA::Concepts::StringView
Definition
string_view.hpp:9
Generated by
1.13.2