#include <cstdint>
#include <cstddef>
|
using | s3d::int8 = std::int8_t |
| 符号付き 8-bit 整数型 | Signed integer type with width of 8 bits More...
|
|
using | s3d::int16 = std::int16_t |
| 符号付き 16-bit 整数型 | Signed integer type with width of 16 bits More...
|
|
using | s3d::int32 = std::int32_t |
| 符号付き 32-bit 整数型 | Signed integer type with width of 32 bits More...
|
|
using | s3d::int64 = std::int64_t |
| 符号付き 64-bit 整数型 | Signed integer type with width of 64 bits More...
|
|
using | s3d::uint8 = std::uint8_t |
| 符号無し 8-bit 整数型 | Unsigned integer type with width of 8 bits More...
|
|
using | s3d::uint16 = std::uint16_t |
| 符号無し 16-bit 整数型 | Unsigned integer type with width of 16 bits More...
|
|
using | s3d::uint32 = std::uint32_t |
| 符号無し 32-bit 整数型 | Unsigned integer type with width of 32 bits More...
|
|
using | s3d::uint64 = std::uint64_t |
| 符号無し 64-bit 整数型 | Unsigned integer type with width of 64 bits More...
|
|
using | s3d::char8 = char |
| UTF-8 文字 | UTF-8 character. More...
|
|
using | s3d::char16 = char16_t |
| UTF-16 文字 | UTF-16 character. More...
|
|
using | s3d::char32 = char32_t |
| UTF-32 文字 | UTF-32 character. More...
|
|