IceShard 1
A personal game engine project, with development focused on 2D/2.5D games.
Loading...
Searching...
No Matches
ice::concepts::MutableStringType Concept Reference

#include <ice/string/string_concepts.hxx>

Concept definition

template<typename T>
&& requires(T& t, typename T::SizeType size_value)
{
{ t.data() } -> std::convertible_to<typename T::CharType*>;
{ t.capacity() } -> std::convertible_to<typename T::SizeType>;
{ t.resize(size_value) } -> std::convertible_to<void>;
}
Definition string_concepts.hxx:33
Definition string_concepts.hxx:20