npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@stdlib/math-base-napi-unary

v0.2.7

Published

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

Readme

unary

NPM version Build Status Coverage Status

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

Installation

npm install @stdlib/math-base-napi-unary

Usage

var headerDir = require( '@stdlib/math-base-napi-unary' );

headerDir

Absolute file path for the directory containing header files for C APIs.

var dir = headerDir;
// returns <string>

Examples

var headerDir = require( '@stdlib/math-base-napi-unary' );

console.log( headerDir );
// => <string>

C APIs

Usage

#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.

#include <stdint.h>

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.

#include <node_api.h>
#include <stdint.h>

// ...

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.
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.

#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.

#include "stdlib/complex/float32/ctor.h"
#include <node_api.h>

// ...

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.
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.

#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.

#include "stdlib/complex/float32/ctor.h"
#include <node_api.h>

// ...

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.
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.

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.

#include <node_api.h>

// ...

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.
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.

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.

#include <node_api.h>

// ...

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.
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.

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.

#include <node_api.h>

// ...

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.
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.

#include <stdint.h>

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.

#include <node_api.h>
#include <stdint.h>

// ...

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.
void stdlib_math_base_napi_f_i( napi_env env, napi_callback_info info, int32_t (*fcn)( float ) );

STDLIB_MATH_BASE_NAPI_MODULE_H_H( fcn )

Macro for registering a Node-API module exporting an interface for invoking a unary function accepting and returning half-precision floating-point numbers.

#include "stdlib/number/float16/ctor.h"

static stdlib_float16_t identity( const stdlib_float16_t x ) {
    return x;
}

// ...

// Register a Node-API module:
STDLIB_MATH_BASE_NAPI_MODULE_H_H( identity );

The macro expects the following arguments:

  • fcn: stdlib_float16_t (*fcn)( stdlib_float16_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_h_h( env, info, fcn )

Invokes a unary function accepting and returning half-precision floating-point numbers.

#include "stdlib/number/float16/ctor.h"
#include <node_api.h>

// ...

static stdlib_float16_t identity( const stdlib_float16_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_h_h( 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_float16_t (*fcn)( stdlib_float16_t ) unary function.
void stdlib_math_base_napi_h_h( napi_env env, napi_callback_info info, stdlib_float16_t (*fcn)( stdlib_float16_t ) );

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.

#include <stdint.h>

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.

#include <node_api.h>
#include <stdint.h>

// ...

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.
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.

#include <stdint.h>

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.

#include <node_api.h>
#include <stdint.h>

// ...

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.
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.

#include <stdint.h>

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.

#include <node_api.h>
#include <stdint.h>

// ...

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.
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.

#include <stdint.h>

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.

#include <node_api.h>
#include <stdint.h>

// ...

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.
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.

#include <stdint.h>

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.

#include <node_api.h>
#include <stdint.h>

// ...

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.
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.

#include <stdint.h>

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.

#include <node_api.h>
#include <stdint.h>

// ...

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.
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.

#include <stdint.h>

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.

#include <node_api.h>
#include <stdint.h>

// ...

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.
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.

#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.

#include "stdlib/complex/float64/ctor.h"
#include <node_api.h>

// ...

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.
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.

#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.

#include "stdlib/complex/float64/ctor.h"
#include <node_api.h>

// ...

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.
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, 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, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2026. The Stdlib Authors.