|
constexpr | Field (Field const &) noexcept=default |
|
constexpr Field & | operator= (Field const &) noexcept=default |
|
constexpr | Field (Field &&) noexcept=default |
|
constexpr Field & | operator= (Field &&) noexcept=default |
|
template<typename... S>
requires std::constructible_from<T, S...> |
constexpr | Field (S &&... value) noexcept |
| Constructs a new field with the given value.
|
|
template<typename S >
requires std::constructible_from<T, S> |
constexpr Field & | operator= (S &&value) noexcept |
| Assigns a new value to the field.
|
|
constexpr std::weak_ordering | operator<=> (Field const &other) const noexcept |
| Compares two fields for equality.
|
|
bool | operator== (Field const &value) const noexcept=default |
| Compares the field value with the given value for equality.
|
|
bool | operator!= (Field const &value) const noexcept=default |
| Compares the field value with the given value for inequality.
|
|
template<typename S >
requires std::convertible_to<S, T> |
bool | operator== (S const &value) const noexcept |
| Compares the field value with the given value for equality.
|
|
template<typename S >
requires std::convertible_to<S, T> |
bool | operator!= (S const &value) const noexcept |
| Compares the field value with the given value for inequality.
|
|
std::string | InspectValue () const |
| Returns a string representation of the value, suitable for use in debugging and logging.
|
|
constexpr void | SetModified (bool value) noexcept |
| Sets the modified state of the field.
|
|
constexpr bool | IsModified () const noexcept |
| Checks if the field has been modified.
|
|
constexpr T const & | Value () const noexcept |
| Returns the value of the field.
|
|
constexpr T & | MutableValue () noexcept |
|
template<typename... S>
requires std::constructible_from<T, S...> |
constexpr LIGHTWEIGHT_FORCE_INLINE | Field (S &&... value) noexcept |
|
template<typename S >
requires std::constructible_from<T, S> |
constexpr LIGHTWEIGHT_FORCE_INLINE Field< T, P1, P2 > & | operator= (S &&value) noexcept |
|
template<typename S >
requires std::convertible_to<S, T> |
LIGHTWEIGHT_FORCE_INLINE bool | operator== (S const &value) const noexcept |
|
template<typename S >
requires std::convertible_to<S, T> |
LIGHTWEIGHT_FORCE_INLINE bool | operator!= (S const &value) const noexcept |
|