#ifndef SPROUT_UTILITY_STRING_REF_ALIAS_HPP #define SPROUT_UTILITY_STRING_REF_ALIAS_HPP #include #include #include namespace sprout { // // string_ref // wstring_ref // u16string_ref // u32string_ref // typedef sprout::basic_string_ref string_ref; typedef sprout::basic_string_ref wstring_ref; typedef sprout::basic_string_ref u16string_ref; typedef sprout::basic_string_ref u32string_ref; // // string_view // wstring_view // u16string_view // u32string_view // typedef sprout::basic_string_ref string_view; typedef sprout::basic_string_ref wstring_view; typedef sprout::basic_string_ref u16string_view; typedef sprout::basic_string_ref u32string_view; #if SPROUT_USE_TEMPLATE_ALIASES // // basic_string_view // template > using basic_string_view = sprout::basic_string_ref; #endif // #if SPROUT_USE_TEMPLATE_ALIASES } // namespace sprout #endif // #ifndef SPROUT_UTILITY_STRING_REF_ALIAS_HPP