#pragma once #include "StringStore.h" #include "StringView.h" namespace string17 { template constexpr auto viewStore(const StringStore& store) -> StringView { return {static_cast(store.data), static_cast(store.data) + N}; } } // namespace string17