util/SpanCast: add ToStringView() template
This commit is contained in:
parent
1a6ec716ef
commit
7c4fca0ae1
@ -96,3 +96,17 @@ ToStringView(std::span<const std::byte> s) noexcept
|
|||||||
{
|
{
|
||||||
return ToStringView(FromBytesStrict<const char>(s));
|
return ToStringView(FromBytesStrict<const char>(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<typename T>
|
||||||
|
constexpr std::basic_string_view<T>
|
||||||
|
ToStringView(std::span<const T> s) noexcept
|
||||||
|
{
|
||||||
|
return {s.data(), s.size()};
|
||||||
|
}
|
||||||
|
|
||||||
|
template<typename T>
|
||||||
|
constexpr std::basic_string_view<T>
|
||||||
|
ToStringView(std::span<T> s) noexcept
|
||||||
|
{
|
||||||
|
return {s.data(), s.size()};
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user