1.4 KiB
1.4 KiB
Symbol
Methods
Constructor
Instantiates a new Napi::Symbol
value.
::Symbol::Symbol(); Napi
Returns a new empty Napi::Symbol
.
New
::Symbol::New(napi_env env, const std::string& description);
Napi::Symbol::New(napi_env env, const char* description);
Napi::Symbol::New(napi_env env, Napi::String description);
Napi::Symbol::New(napi_env env, napi_value description); Napi
[in] env
: Thenapi_env
environment in which to construct theNapi::Symbol
object.[in] value
: The C++ primitive which represents the description hint for theNapi::Symbol
.description
may be any of:std::string&
- ANSI string description.const char*
- represents a UTF8 string description.String
- Node addon API String description.napi_value
- N-APInapi_value
description.
If an error occurs, a Napi::Error
will get thrown. If
C++ exceptions are not being used, callers should check the result of
Napi::Env::IsExceptionPending
before attempting to use the
returned value.
Utf8Value
static Napi::Symbol Napi::Symbol::WellKnown(napi_env env, const std::string& name);
[in] env
: Thenapi_env
environment in which to construct theNapi::Symbol
object.[in] name
: The C++ string representing theNapi::Symbol
to retrieve.
Returns a Napi::Symbol
representing a well-known
Symbol
from the Symbol
registry.