Lines Matching refs:lazy
98 class lazy {110 lazy(T x) : obj(new detail::strict_lazy<T>(x)) {118 lazy(F &&f) : obj(new detail::deferred_lazy<126 lazy() : lazy([]() {132 lazy(const lazy &other) : obj(obj->clone()) {135 lazy(lazy &&other) : obj(NULL) {139 ~lazy() {143 lazy &144 operator=(lazy other) {