## `[static] QPromise::resolve` ``` [static] QPromise::resolve(T value) -> QPromise ``` Creates a `QPromise` that is fulfilled with the given `value` of type `T`: ```cpp QPromise compute(const QString& type) { if (type == "magic") { return QPromise::resolve(42); } return QPromise([](const QPromiseResolve& resolve) { // {...} }); } ``` See also: [`qPromise`](../helpers/qpromise.md)