| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/nami/node_modules/node-addon-api/doc/ |
Upload File : |
# Boolean `Napi::Boolean` class is a representation of the JavaScript `Boolean` object. The `Napi::Boolean` class inherits its behavior from the `Napi::Value` class (for more info see: [`Napi::Value`](value.md)). ## Methods ### Constructor Creates a new empty instance of an `Napi::Boolean` object. ```cpp Napi::Boolean::Boolean(); ``` Returns a new _empty_ `Napi::Boolean` object. ### Contructor Creates a new instance of the `Napi::Boolean` object. ```cpp Napi::Boolean(napi_env env, napi_value value); ``` - `[in] env`: The `napi_env` environment in which to construct the `Napi::Boolean` object. - `[in] value`: The `napi_value` which is a handle for a JavaScript `Boolean`. Returns a non-empty `Napi::Boolean` object. ### New Initializes a new instance of the `Napi::Boolean` object. ```cpp Napi::Boolean Napi::Boolean::New(napi_env env, bool value); ``` - `[in] env`: The `napi_env` environment in which to construct the `Napi::Boolean` object. - `[in] value`: The primitive boolean value (`true` or `false`). Returns a new instance of the `Napi::Boolean` object. ### Value Converts a `Napi::Boolean` value to a boolean primitive. ```cpp bool Napi::Boolean::Value() const; ``` Returns the boolean primitive type of the corresponding `Napi::Boolean` object. ## Operators ### operator bool Converts a `Napi::Boolean` value to a boolean primitive. ```cpp Napi::Boolean::operator bool() const; ``` Returns the boolean primitive type of the corresponding `Napi::Boolean` object.