FastLED 3.9.15
Loading...
Searching...
No Matches

◆ operator=() [9/9]

Json & fl::Json::operator= ( Json && other)
inline

Definition at line 1679 of file json.h.

1681 {
1682 if (this != &other) {
1683 m_value = fl::move(other.m_value);
1684 }
fl::shared_ptr< JsonValue > m_value
Definition json.h:1622
constexpr remove_reference< T >::type && move(T &&t) noexcept
Definition move.h:27