Iros
 
Loading...
Searching...
No Matches
string_clear.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace di::container::string {
7template<concepts::detail::MutableString Str>
8constexpr void clear(Str& string) {
9 vector::clear(string);
10}
11}
Definition constant_string_interface.h:31
constexpr void clear(Str &string)
Definition string_clear.h:8
constexpr void clear(Vec &vector)
Definition vector_clear.h:12