MCPcopy Create free account
hub / github.com/NativeScript/android / FromJust

Method FromJust

test-app/runtime/src/main/cpp/include/v8-maybe.h:60–63  ·  view source on GitHub ↗

* Converts this Maybe<> to a value of type T. If this Maybe<> is * nothing (empty), V8 will crash the process. */

Source from the content-addressed store, hash-verified

58 * nothing (empty), V8 will crash the process.
59 */
60 V8_INLINE T FromJust() const {
61 if (V8_UNLIKELY(!IsJust())) api_internal::FromJustIsNothing();
62 return value_;
63 }
64
65 /**
66 * Converts this Maybe<> to a value of type T, using a default value if this

Callers 2

CreateJavaArrayMethod · 0.80
operator==Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected