xtd 0.2.0
Loading...
Searching...
No Matches
guid.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "../guid.hpp"
6
8namespace xtd {
10 inline namespace literals {
12
25 [[nodiscard]] auto operator""_guid(const char* s, xtd::size n) -> xtd::guid;
26
38 [[nodiscard]] auto operator""_guid(const char8* s, xtd::size n) -> xtd::guid;
39
51 [[nodiscard]] auto operator""_guid(const char16* s, xtd::size n) -> xtd::guid;
52
64 [[nodiscard]] auto operator""_guid(const char32* s, xtd::size n) -> xtd::guid;
65
77 [[nodiscard]] auto operator""_guid(const wchar* s, xtd::size n) -> xtd::guid;
79 }
80}
Represents a globally unique identifier (GUID). A GUID is a 128-bit integer (16 bytes) that can be us...
Definition guid.hpp:23
size_t size
Represents a size of any object in bytes.
Definition size.hpp:23
char8_t char8
Represents a 8-bit unicode character.
Definition char8.hpp:26
wchar_t wchar
Represents a wide character.
Definition wchar.hpp:24
char16_t char16
Represents a 16-bit unicode character.
Definition char16.hpp:26
char32_t char32
Represents a 32-bit unicode character.
Definition char32.hpp:23
@ s
The S key.
Definition console_key.hpp:124
@ n
The N key.
Definition console_key.hpp:114
Contains xtd::guid class.
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