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