xtd 0.2.0
Loading...
Searching...
No Matches
uint32.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <cstddef>
6#include "../uint32.hpp"
7#include "../usize.hpp"
8#define __XTD_STD_INTERNAL__
10#undef __XTD_STD_INTERNAL__
11
13namespace xtd {
15 inline namespace literals {
17
29 [[nodiscard]] auto operator""_u32(long double n) -> xtd::uint32;
30
41 [[nodiscard]] auto operator""_u32(unsigned long long n) -> xtd::uint32;
42
53 [[nodiscard]] auto operator""_u32(const char* s, xtd::usize n) -> xtd::uint32;
54
65 [[nodiscard]] auto operator""_u32(const char8_t* s, xtd::usize n) -> xtd::uint32;
66
77 [[nodiscard]] auto operator""_u32(const char16_t* s, xtd::usize n) -> xtd::uint32;
78
89 [[nodiscard]] auto operator""_u32(const char32_t* s, xtd::usize n) -> xtd::uint32;
90
101 [[nodiscard]] auto operator""_u32(const wchar_t* s, xtd::usize n) -> xtd::uint32;
103 }
104}
std::uint32_t uint32
Represents a 32-bit unsigned integer.
Definition uint32.hpp:23
std::size_t usize
Represents an unsigned size of any object in bytes.
Definition usize.hpp:22
@ s
The S key.
Definition console_key.hpp:124
@ n
The N key.
Definition console_key.hpp:114
The xtd::literals namespace contains all xtd's litterals operators.
Definition byte.hpp:15
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::uint32 type.
Contains xtd::usize type.