Searched defs:SkTLazy (Results 1 – 1 of 1) sorted by relevance
23 explicit SkTLazy(const T* src) : fValue(src ? std::optional<T>(*src) : std::nullopt) {} in SkTLazy() function24 SkTLazy(const SkTLazy& that) : fValue(that.fValue) {} in SkTLazy() function25 SkTLazy(SkTLazy&& that) : fValue(std::move(that.fValue)) {} in SkTLazy() function