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