di 0.1.0
Loading...
Searching...
No Matches
mutable_string.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace di::concepts::detail {
7template<typename T>
8concept MutableString = ConstantString<T> && MutableVector<T> &&
9 SameAs<meta::EncodingCodeUnit<meta::Encoding<T>>, meta::detail::VectorValue<T>>;
10}