xtd 0.2.0
int32.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <cstddef>
6#include "../int32.hpp"
7#define __XTD_STD_INTERNAL__
9#undef __XTD_STD_INTERNAL__
10
12namespace xtd {
14 inline namespace literals {
16
28 int32 operator""_i32(long double n);
29
40 int32 operator""_i32(unsigned long long n);
41
52 int32 operator""_i32(const char* s, std::size_t n);
53
64 int32 operator""_i32(const char8_t* s, std::size_t n);
65
76 int32 operator""_i32(const char16_t* s, std::size_t n);
77
88 int32 operator""_i32(const char32_t* s, std::size_t n);
89
100 int32 operator""_i32(const wchar_t* s, std::size_t n);
101
112 int32 operator""_s32(long double n);
113
124 int32 operator""_s32(unsigned long long n);
125
136 int32 operator""_s32(const char* s, std::size_t n);
137
148 int32 operator""_s32(const char8_t* s, std::size_t n);
149
160 int32 operator""_s32(const char16_t* s, std::size_t n);
161
172 int32 operator""_s32(const char32_t* s, std::size_t n);
173
184 int32 operator""_s32(const wchar_t* s, std::size_t n);
186 }
187}
Contains __xtd_std_version definitions.
int32_t int32
Represents a 32-bit signed integer.
Definition int32.hpp:23
@ s
The S key.
Definition console_key.hpp:124
@ n
The N key.
Definition console_key.hpp:114
Contains xtd::int32 type.
The xtd::literals namespace contains all xtd's litterals operators.
Definition character_literals.hpp:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8