20#ifndef LLVMEXPR_UTILS_FIXEDSTRING_HPP
21#define LLVMEXPR_UTILS_FIXEDSTRING_HPP
33 std::ranges::copy(str,
value.begin());
36 [[nodiscard]]
constexpr std::string_view
view()
const {
37 return {
value.data(), N - 1};
std::array< char, N > value
constexpr std::string_view view() const
constexpr FixedString(const char(&str)[N])