@stdlib/math-base-napi-unary

C APIs for registering an N-API module exporting an interface for invoking a unary numerical function.

https://github.com/stdlib-js/math-base-napi-unary

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.8%) to scientific vocabulary

Keywords

addon javascript map math mathematics n-api napi node node-js nodejs stdlib transform unary

Keywords from Contributors

iterator tokenizer accumulator assert reduced name normal partial bifurcate abbreviate
Last synced: 4 months ago · JSON representation ·

Repository

C APIs for registering an N-API module exporting an interface for invoking a unary numerical function.

Basic Info
Statistics
  • Stars: 2
  • Watchers: 3
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
addon javascript map math mathematics n-api napi node node-js nodejs stdlib transform unary
Created over 4 years ago · Last pushed 5 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security

README.md

About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

unary

NPM version Build Status Coverage Status <!-- dependencies -->

C APIs for registering a Node-API module exporting interfaces for invoking unary numerical functions.

## Installation ```bash npm install @stdlib/math-base-napi-unary ```
## Usage ```javascript var headerDir = require( '@stdlib/math-base-napi-unary' ); ``` #### headerDir Absolute file path for the directory containing header files for C APIs. ```javascript var dir = headerDir; // returns ```
## Examples ```javascript var headerDir = require( '@stdlib/math-base-napi-unary' ); console.log( headerDir ); // => ```

## C APIs
### Usage ```c #include "stdlib/math/base/napi/unary.h" ``` #### STDLIB_MATH_BASE_NAPI_MODULE_B_B( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning 8-bit unsigned integers. ```c #include static uint8_t scale( const uint8_t x ) { return x * 10; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_B_B( scale ); ``` The macro expects the following arguments: - **fcn**: `uint8_t (*fcn)( uint8_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_b_b( env, info, fcn ) Invokes a unary function accepting and returning unsigned 8-bit integers. ```c #include #include // ... static uint8_t identity( const uint8_t x ) { return x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_b_b( env, info, identity ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] uint8_t (*fcn)( uint8_t )` unary function. ```c void stdlib_math_base_napi_b_b( napi_env env, napi_callback_info info, uint8_t (*fcn)( uint8_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_C_C( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning single-precision complex floating-point numbers. ```c #include "stdlib/complex/float32/ctor.h" #include "stdlib/complex/float32/reim.h" static stdlib_complex64_t scale( const stdlib_complex64_t x ) { float re; float im; stdlib_complex64_reim( x, &re, &im ); re *= 10.0f; im *= 10.0f; return stdlib_complex64( re, im ); } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_C_C( scale ); ``` The macro expects the following arguments: - **fcn**: `stdlib_complex64_t (*fcn)( stdlib_complex64_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_c_c( env, info, fcn ) Invokes a unary function accepting and returning single-precision complex floating-point numbers. ```c #include "stdlib/complex/float32/ctor.h" #include // ... static stdlib_complex64_t identity( const stdlib_complex64_t x ) { return x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_c_c( env, info, identity ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] stdlib_complex64_t (*fcn)( stdlib_complex64_t )` unary function. ```c void stdlib_math_base_napi_c_c( napi_env env, napi_callback_info info, stdlib_complex64_t (*fcn)( stdlib_complex64_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_C_F( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting a single-precision complex floating-point number and returning a single-precision floating-point number. ```c #include "stdlib/complex/float32/ctor.h" static float fcn( const stdlib_complex64_t x ) { // ... } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_C_F( fcn ); ``` The macro expects the following arguments: - **fcn**: `float (*fcn)( stdlib_complex64_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_c_f( env, info, fcn ) Invokes a unary function accepting a single-precision complex floating-point number and returning a single-precision floating-point number. ```c #include "stdlib/complex/float32/ctor.h" #include // ... static float fcn( const stdlib_complex64_t x ) { // ... } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_c_f( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] float (*fcn)( stdlib_complex64_t )` unary function. ```c void stdlib_math_base_napi_c_f( napi_env env, napi_callback_info info, float (*fcn)( stdlib_complex64_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_D_D( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning double-precision floating-point numbers. ```c static double scale( const double x ) { return x * 10.0; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_D_D( scale ); ``` The macro expects the following arguments: - **fcn**: `double (*fcn)( double )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_d_d( env, info, fcn ) Invokes a unary function accepting and returning double-precision floating-point numbers. ```c #include // ... static double identity( const double x ) { return x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_d_d( env, info, identity ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] double (*fcn)( double )` unary function. ```c void stdlib_math_base_napi_d_d( napi_env env, napi_callback_info info, double (*fcn)( double ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_D_F( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting a double-precision floating-point number and returning a single-precision floating-point number. ```c static float fcn( const double x ) { return (float)x; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_D_F( fcn ); ``` The macro expects the following arguments: - **fcn**: `float (*fcn)( double )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_d_f( env, info, fcn ) Invokes a unary function accepting a double-precision floating-point number and returning a single-precision floating-point number. ```c #include // ... static float fcn( const double x ) { return (float)x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_d_f( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] float (*fcn)( double )` unary function. ```c void stdlib_math_base_napi_d_f( napi_env env, napi_callback_info info, float (*fcn)( double ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_F_F( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning single-precision floating-point numbers. ```c static float scale( const float x ) { return x * 10.0f; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_F_F( scale ); ``` The macro expects the following arguments: - **fcn**: `float (*fcn)( float )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_f_f( env, info, fcn ) Invokes a unary function accepting and returning single-precision floating-point numbers. ```c #include // ... static float identityf( const float x ) { return x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_f_f( env, info, identityf ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] float (*fcn)( float )` unary function. ```c void stdlib_math_base_napi_f_f( napi_env env, napi_callback_info info, float (*fcn)( float ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_F_I( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting a single-precision floating-point number and returning a signed 32-bit integer. ```c #include static int32_t fcn( const float x ) { // ... } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_F_I( fcn ); ``` The macro expects the following arguments: - **fcn**: `int32_t (*fcn)( float )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_f_i( env, info, fcn ) Invokes a unary function accepting a single-precision floating-point number and returning a signed 32-bit integer. ```c #include #include // ... static int32_t fcn( const float x ) { // ... } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_f_i( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] int32_t (*fcn)( float )` unary function. ```c void stdlib_math_base_napi_f_i( napi_env env, napi_callback_info info, int32_t (*fcn)( float ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_I_D( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting a signed 32-bit integer and returning a double-precision floating-point number. ```c #include static double scale( const int32_t x ) { return x * 10.0; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_I_D( scale ); ``` The macro expects the following arguments: - **fcn**: `double (*fcn)( int32_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_i_d( env, info, fcn ) Invokes a unary function accepting a signed 32-bit integer and returning a double-precision floating-point number. ```c #include #include // ... static double scale( const int32_t x ) { return x * 10.0; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_i_d( env, info, scale ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] double (*fcn)( int32_t )` unary function. ```c void stdlib_math_base_napi_i_d( napi_env env, napi_callback_info info, double (*fcn)( int32_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_I_F( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting a signed 32-bit integer and returning a single-precision floating-point number. ```c #include static float fcn( const int32_t x ) { // ... } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_I_F( fcn ); ``` The macro expects the following arguments: - **fcn**: `float (*fcn)( int32_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_i_f( env, info, fcn ) Invokes a unary function accepting a signed 32-bit integer and returning a single-precision floating-point number. ```c #include #include // ... static float fcn( const int32_t x ) { // ... } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_i_f( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] float (*fcn)( int32_t )` unary function. ```c void stdlib_math_base_napi_i_f( napi_env env, napi_callback_info info, float (*fcn)( int32_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_I_I( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning 32-bit signed integers. ```c #include static int32_t scale( const int32_t x ) { return x * 10; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_I_I( scale ); ``` The macro expects the following arguments: - **fcn**: `int32_t (*fcn)( int32_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_i_i( env, info, fcn ) Invokes a unary function accepting and returning signed 32-bit integers. ```c #include #include // ... static int32_t identity( const int32_t x ) { return x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_i_i( env, info, identity ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] int32_t (*fcn)( int32_t )` unary function. ```c void stdlib_math_base_napi_i_i( napi_env env, napi_callback_info info, int32_t (*fcn)( int32_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_K_K( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning 16-bit signed integers. ```c #include static int16_t scale( const int16_t x ) { return x * 10; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_K_K( scale ); ``` The macro expects the following arguments: - **fcn**: `int16_t (*fcn)( int16_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_k_k( env, info, fcn ) Invokes a unary function accepting and returning signed 16-bit integers. ```c #include #include // ... static int16_t identity( const int16_t x ) { return x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_k_k( env, info, identity ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] int16_t (*fcn)( int16_t )` unary function. ```c void stdlib_math_base_napi_k_k( napi_env env, napi_callback_info info, int16_t (*fcn)( int16_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_S_S( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning 8-bit signed integers. ```c #include static int8_t scale( const int8_t x ) { return x * 10; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_S_S( scale ); ``` The macro expects the following arguments: - **fcn**: `int8_t (*fcn)( int8_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_s_s( env, info, fcn ) Invokes a unary function accepting and returning signed 8-bit integers. ```c #include #include // ... static int8_t identity( const int8_t x ) { return x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_s_s( env, info, identity ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] int8_t (*fcn)( int8_t )` unary function. ```c void stdlib_math_base_napi_s_s( napi_env env, napi_callback_info info, int8_t (*fcn)( int8_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_T_T( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning 16-bit unsigned integers. ```c #include static uint16_t scale( const uint16_t x ) { return x * 10; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_T_T( scale ); ``` The macro expects the following arguments: - **fcn**: `uint16_t (*fcn)( uint16_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_t_t( env, info, fcn ) Invokes a unary function accepting and returning unsigned 16-bit integers. ```c #include #include // ... static uint16_t identity( const uint16_t x ) { return x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_t_t( env, info, identity ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] uint16_t (*fcn)( uint16_t )` unary function. ```c void stdlib_math_base_napi_t_t( napi_env env, napi_callback_info info, uint16_t (*fcn)( uint16_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_U_U( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning 32-bit unsigned integers. ```c #include static uint32_t scale( const uint32_t x ) { return x * 10; } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_U_U( scale ); ``` The macro expects the following arguments: - **fcn**: `uint32_t (*fcn)( uint32_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_u_u( env, info, fcn ) Invokes a unary function accepting and returning unsigned 32-bit integers. ```c #include #include // ... static uint32_t identity( const uint32_t x ) { return x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_u_u( env, info, identity ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] uint32_t (*fcn)( uint32_t )` unary function. ```c void stdlib_math_base_napi_u_u( napi_env env, napi_callback_info info, uint32_t (*fcn)( uint32_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_Z_D( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting a double-precision complex floating-point number and returning a double-precision floating-point number. ```c #include "stdlib/complex/float64/ctor.h" static double fcn( const stdlib_complex128_t x ) { // ... } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_Z_D( fcn ); ``` The macro expects the following arguments: - **fcn**: `double (*fcn)( stdlib_complex128_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_z_d( env, info, fcn ) Invokes a unary function accepting a double-precision complex floating-point number and returning a double-precision floating-point number. ```c #include "stdlib/complex/float64/ctor.h" #include // ... static double fcn( const stdlib_complex128_t x ) { // ... } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_z_d( env, info, fcn ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] double (*fcn)( stdlib_complex128_t )` unary function. ```c void stdlib_math_base_napi_z_d( napi_env env, napi_callback_info info, double (*fcn)( stdlib_complex128_t ) ); ``` #### STDLIB_MATH_BASE_NAPI_MODULE_Z_Z( fcn ) Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning double-precision complex floating-point numbers. ```c #include "stdlib/complex/float64/ctor.h" #include "stdlib/complex/float64/reim.h" static stdlib_complex128_t scale( const stdlib_complex128_t x ) { double re; double im; stdlib_complex128_reim( x, &re, &im ); re *= 10.0; im *= 10.0; return stdlib_complex128( re, im ); } // ... // Register a Node-API module: STDLIB_MATH_BASE_NAPI_MODULE_Z_Z( scale ); ``` The macro expects the following arguments: - **fcn**: `stdlib_complex128_t (*fcn)( stdlib_complex128_t )` unary function. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### stdlib_math_base_napi_z_z( env, info, fcn ) Invokes a unary function accepting and returning double-precision complex floating-point numbers. ```c #include "stdlib/complex/float64/ctor.h" #include // ... static stdlib_complex128_t identity( const stdlib_complex128_t x ) { return x; } // ... /** * Receives JavaScript callback invocation data. * * @param env environment under which the function is invoked * @param info callback data * @return Node-API value */ napi_value addon( napi_env env, napi_callback_info info ) { return stdlib_math_base_napi_z_z( env, info, identity ); } // ... ``` The function accepts the following arguments: - **env**: `[in] napi_env` environment under which the function is invoked. - **info**: `[in] napi_callback_info` callback data. - **fcn**: `[in] stdlib_complex128_t (*fcn)( stdlib_complex128_t )` unary function. ```c void stdlib_math_base_napi_z_z( napi_env env, napi_callback_info info, stdlib_complex128_t (*fcn)( stdlib_complex128_t ) ); ```
### Notes - The C-API functions expect that the callback `info` argument provides access to the following JavaScript arguments: - **x**: input value.

* * * ## Notice This package is part of [stdlib][stdlib], a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more. For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib]. #### Community [![Chat][chat-image]][chat-url] --- ## License See [LICENSE][stdlib-license]. ## Copyright Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].

Owner

  • Name: stdlib
  • Login: stdlib-js
  • Kind: organization

Standard library for JavaScript.

Citation (CITATION.cff)

cff-version: 1.2.0
title: stdlib
message: >-
  If you use this software, please cite it using the
  metadata from this file.

type: software

authors:
  - name: The Stdlib Authors
    url: https://github.com/stdlib-js/stdlib/graphs/contributors

repository-code: https://github.com/stdlib-js/stdlib
url: https://stdlib.io

abstract: |
  Standard library for JavaScript and Node.js.

keywords:
  - JavaScript
  - Node.js
  - TypeScript
  - standard library
  - scientific computing
  - numerical computing
  - statistical computing

license: Apache-2.0 AND BSL-1.0

date-released: 2016

GitHub Events

Total
  • Push event: 10
Last Year
  • Push event: 10

Committers

Last synced: almost 2 years ago

All Time
  • Total Commits: 60
  • Total Committers: 2
  • Avg Commits per committer: 30.0
  • Development Distribution Score (DDS): 0.033
Past Year
  • Commits: 20
  • Committers: 2
  • Avg Commits per committer: 10.0
  • Development Distribution Score (DDS): 0.1
Top Committers
Name Email Commits
stdlib-bot n****y@s****o 58
Philipp Burckhardt p****t@o****m 2
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • npm 1,672,685 last-month
  • Total docker downloads: 481,308,706
  • Total dependent packages: 79
  • Total dependent repositories: 816
  • Total versions: 15
  • Total maintainers: 4
npmjs.org: @stdlib/math-base-napi-unary

C APIs for registering a Node-API module exporting an interface for invoking a unary numerical function.

  • Homepage: https://stdlib.io
  • License: Apache-2.0
  • Latest release: 0.2.3
    published over 1 year ago
  • Versions: 15
  • Dependent Packages: 79
  • Dependent Repositories: 816
  • Downloads: 1,672,685 Last month
  • Docker Downloads: 481,308,706
Rankings
Docker downloads count: 0.1%
Downloads: 0.1%
Dependent packages count: 0.4%
Dependent repos count: 0.6%
Average: 5.2%
Stargazers count: 14.5%
Forks count: 15.4%
Funding
  • type: opencollective
  • url: https://opencollective.com/stdlib
Last synced: 5 months ago

Dependencies

package.json npm
  • @stdlib/assert-is-browser ^0.0.x development
  • @stdlib/bench ^0.0.x development
  • @stdlib/math-base-assert-is-nan ^0.0.x development
  • @stdlib/utils-try-require ^0.0.x development
  • istanbul ^0.4.1 development
  • tap-spec 5.x.x development
  • tape git+https://github.com/kgryte/tape.git#fix/globby development
  • @stdlib/complex-float32 ^0.0.x
  • @stdlib/complex-float64 ^0.0.x
  • @stdlib/complex-reim ^0.0.x
  • @stdlib/complex-reimf ^0.0.x
  • @stdlib/utils-library-manifest ^0.0.x
.github/workflows/benchmark.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/cancel.yml actions
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/close_pull_requests.yml actions
  • superbrothers/close-pull-request v3 composite
.github/workflows/examples.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/npm_downloads.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • actions/upload-artifact v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/publish.yml actions
  • JS-DevTools/npm-publish v1 composite
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/test.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/test_coverage.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • codecov/codecov-action v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/test_install.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite