MCPcopy Create free account
hub / github.com/FastLED/FastLED / Optional

Method Optional

src/fl/stl/optional.h:23–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21
22 public:
23 Optional() FL_NOEXCEPT : mValue(Empty()) {}
24 Optional(nullopt_t) FL_NOEXCEPT : mValue(Empty()) {}
25 Optional(const Optional &other) FL_NOEXCEPT : mValue(other.mValue) {}
26 Optional(Optional &&other) FL_NOEXCEPT : mValue(fl::move(other.mValue)) {}

Callers

nothing calls this directly

Calls 1

EmptyClass · 0.85

Tested by

no test coverage detected