You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/napi/ternary/include/stdlib/math/base/napi/ternary.h
-242Lines changed: 0 additions & 242 deletions
Original file line number
Diff line number
Diff line change
@@ -19,247 +19,6 @@
19
19
#ifndefSTDLIB_MATH_BASE_NAPI_TERNARY_H
20
20
#defineSTDLIB_MATH_BASE_NAPI_TERNARY_H
21
21
22
-
<<<<<<<HEAD
23
-
#include<node_api.h>
24
-
#include<assert.h>
25
-
26
-
/**
27
-
* Macro for registering a Node-API module exporting an interface invoking a ternary function accepting and returning double-precision floating-point numbers.
28
-
*
29
-
* @param fcn ternary function
30
-
*
31
-
* @example
32
-
* static double add( const double x, const double y, const double z ) {
* Macro for registering a Node-API module exporting an interface invoking a ternary function accepting and returning single-precision floating-point numbers.
68
-
*
69
-
* @param fcn ternary function
70
-
*
71
-
* @example
72
-
* static float addf( const float x, const float y, const float z ) {
* Macro for registering a Node-API module exporting an interface invoking a ternary function accepting a double-precision floating-point number and two signed 32-bit integers and returning a double-precision floating-point number.
108
-
*
109
-
* @param fcn ternary function
110
-
*
111
-
* @example
112
-
* #include <stdint.h>
113
-
*
114
-
* static double fcn( const double x, const int_32 y, const int_32 z ) {
* Macro for registering a Node-API module exporting an interface invoking a ternary function accepting a double-precision floating-point number, a signed 32-bit integers and a double-precision floating-point number and returning a double-precision floating-point number.
150
-
*
151
-
* @param fcn ternary function
152
-
*
153
-
* @example
154
-
* #include <stdint.h>
155
-
*
156
-
* static double fcn( const double x, const int_32 y, const double z ) {
* Macro for registering a Node-API module exporting an interface invoking a ternary function accepting two signed 32-bit integers and a double-precision floating-point number and returning a double-precision floating-point number.
192
-
*
193
-
* @param fcn ternary function
194
-
*
195
-
* @example
196
-
* #include <stdint.h>
197
-
*
198
-
* static double fcn( const int_32 x, const int_32 y, const double z ) {
* Invokes a ternary function accepting a double-precision floating-point number and two signed 32-bit integers and returning a double-precision floating-point number.
* Invokes a ternary function accepting two signed 32-bit integers and a double-precision floating-point number and returning a double-precision floating-point number.
0 commit comments