StormByte C++ Library 0.0.9999
StormByte is a comprehensive, cross-platform C++ library aimed at easing system programming, configuration management, logging, and database handling tasks. This library provides a unified API that abstracts away the complexities and inconsistencies of different platforms (Windows, Linux).
Loading...
Searching...
No Matches
StormByte::Type::String Concept Reference

Concept to check if a type is std::string or std::wstring. More...

#include <type_traits.hxx>

Concept definition

template<typename T>
concept StormByte::Type::String = is_string<T>::value
Concept to check if a type is std::string or std::wstring.
Definition type_traits.hxx:82

Detailed Description

Concept to check if a type is std::string or std::wstring.

Template Parameters
TThe type to check.

A type satisfies String if it is exactly std::string or std::wstring.

template<Type::String T>
void process(T str) { ... }