ladivic
|
Defines common types used throughout the library. More...
#include <string>
#include <cstdint>
Go to the source code of this file.
Typedefs | |
using | string = std::string |
Alias for std::string. | |
using | rune = char |
Alias for a Unicode character. | |
using | i8 = signed char |
Signed integer types. | |
using | i16 = short |
using | i32 = int |
using | i64 = long long |
using | u8 = unsigned char |
Unsigned integer types. | |
using | u16 = unsigned short |
using | u32 = unsigned int |
using | u64 = unsigned long long |
using | real = double |
Floating-point type. | |
using | usize = size_t |
Unsigned size type. | |
using | any = void* |
Alias for void pointer. | |
Defines common types used throughout the library.
This header file defines several common types used throughout the library, including integer types, floating-point types, string type, and other aliases.
Definition in file ldvc_type.hpp.
Alias for void pointer.
Definition at line 66 of file ldvc_type.hpp.
Definition at line 49 of file ldvc_type.hpp.
Definition at line 50 of file ldvc_type.hpp.
Definition at line 51 of file ldvc_type.hpp.
Floating-point type.
Definition at line 60 of file ldvc_type.hpp.
Alias for a Unicode character.
Definition at line 45 of file ldvc_type.hpp.
Alias for std::string.
Definition at line 42 of file ldvc_type.hpp.
Definition at line 55 of file ldvc_type.hpp.
Definition at line 56 of file ldvc_type.hpp.
Unsigned size type.
Definition at line 63 of file ldvc_type.hpp.