SPROUT_CXX14_CONSTEXPR void resize(size_type n, value_type c);
SPROUT_CXX14_CONSTEXPR void resize(size_type n);
#include <sprout/string.hpp>
#include <sprout/assert.hpp>
using namespace sprout;
auto x = string<8>("homuhomu");
int main() {
x.resize(4);
SPROUT_ASSERT_MSG(x.size() == 4 && x == "homu", "string is resized to 4.");
}