11#ifndef INCGUARD_MGL_TEXT_FORMAT_ARGUMENT_H_1622208320
12#define INCGUARD_MGL_TEXT_FORMAT_ARGUMENT_H_1622208320
50 if constexpr (std::is_integral_v<T>)
53 if constexpr (std::is_signed_v<T>)
61 _type = Type::UnsignedInt;
66 else if constexpr (std::is_floating_point_v<T>)
72 else if constexpr (std::is_same_v<T, bool>)
78 else if constexpr (std::is_same_v<T, STL::string>)
85 else if constexpr (std::is_convertible_v<T, const char *>)
92 else if constexpr (std::is_pointer_v<T>)
94 _type = Type::Pointer;
95 _ui =
reinterpret_cast<uint64_t
>(value);
100 static_assert(
true,
"Unknown format type detected. Please cast int, float, or const char * type.");
114 enum class Type : uint8_t
125 [[nodiscard]]
bool IsZero() const noexcept;
126 [[nodiscard]]
bool IsPositiveValue() const noexcept;
127 [[nodiscard]]
bool IsNegativeValue() const noexcept;
128 [[nodiscard]] STL::
string ToStringFromNumber(const FormatOptions &options) const noexcept;
129 [[nodiscard]] STL::
string ToStringFromDecimal(const FormatOptions &options) const noexcept;
130 [[nodiscard]] STL::
string ToHexStringFromValue(const FormatOptions &options) const noexcept;
132 static
void AlignmentString(STL::
string &result, const FormatOptions &options, const STL::
string &
string) noexcept;
テキストフォーマットの引数
Definition mgl_text_format_argument.h:27
FormatArgument(const T &value) noexcept
コンストラクタ
Definition mgl_text_format_argument.h:47
static STL::vector< IndexedCharacter > ToIndexedCharacters(const FormatOptions &options) noexcept
置換オプションをインデックス文字に変換
Definition mgl_text_format_argument.cc:242
FormatArgument() noexcept
コンストラクタ
Definition mgl_text_format_argument.h:34
STL::string ToString(const FormatOptions &options=FormatOptions()) const noexcept
文字列に変換
Definition mgl_text_format_argument.cc:32
static const char * Parse(FormatOptions &options, const char *parseText) noexcept
フォーマット文字列のパース
Definition mgl_text_format_argument.cc:93
std::vector< T, Allocator< T > > vector
std::vectorの代替
Definition mgl_stl_containers.h:51
basic_string< char > string
std::stringの代替
Definition mgl_stl_string.h:25
uint16_t IndexedCharacter
インデックス化文字
Definition mgl_text_defs.h:30
STL::vector< FormatArgument > FormatArgs
テキストフォーマットの引数の配列
Definition mgl_text_format_argument.h:147
フォーマットオプション
Definition mgl_text_format_options.h:19