Project Alice
Loading...
Searching...
No Matches
native_types_nix.hpp
Go to the documentation of this file.
1#pragma once
2#include <string>
3#include <string_view>
4
5using native_string = std::string;
6using native_string_view = std::string_view;
7using native_char = char;
8template<typename T>
10 return std::to_string(v);
11}
12
13#define NATIVE(X) X
14#define NATIVE_M(X) NATIVE(X)
15#define NATIVE_DIR_SEPARATOR '/'
char native_char
native_string to_native_string(T &&v) noexcept
std::string_view native_string_view
std::string native_string