Skip to content

Commit 090d188

Browse files
committed
build: add header template
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 9f517d8 commit 090d188

File tree

1 file changed

+150
-0
lines changed
  • lib/node_modules/@stdlib/ndarray/base/every/scripts/templates

1 file changed

+150
-0
lines changed
Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) {{YEAR}} {{COPYRIGHT}}.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
/*
20+
* The following is auto-generated. Do not manually edit. See scripts/loops.js.
21+
*/
22+
23+
#ifndef STDLIB_NDARRAY_BASE_EVERY_{{INCLUDE_GUARD}}_H
24+
#define STDLIB_NDARRAY_BASE_EVERY_{{INCLUDE_GUARD}}_H
25+
26+
#include "stdlib/ndarray/ctor.h"
27+
#include <stdint.h>
28+
29+
/*
30+
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.
31+
*/
32+
#ifdef __cplusplus
33+
extern "C" {
34+
#endif
35+
36+
/**
37+
* Tests whether every element is truthy and assigns the result to a zero-dimensional output ndarray.
38+
*/
39+
int8_t stdlib_ndarray_every_{{SIGNATURE}}( struct ndarray *arrays[], void *data );
40+
41+
/**
42+
* Tests whether every element is truthy in a zero-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
43+
*/
44+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_0d( struct ndarray *arrays[], void *data );
45+
46+
/**
47+
* Tests whether every element is truthy in a one-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
48+
*/
49+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_1d( struct ndarray *arrays[], void *data );
50+
51+
/**
52+
* Tests whether every element is truthy in a two-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
53+
*/
54+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_2d( struct ndarray *arrays[], void *data );
55+
56+
/**
57+
* Tests whether every element is truthy in a two-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
58+
*/
59+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_2d_blocked( struct ndarray *arrays[], void *data );
60+
61+
/**
62+
* Tests whether every element is truthy in a three-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
63+
*/
64+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_3d( struct ndarray *arrays[], void *data );
65+
66+
/**
67+
* Tests whether every element is truthy in a three-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
68+
*/
69+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_3d_blocked( struct ndarray *arrays[], void *data );
70+
71+
/**
72+
* Tests whether every element is truthy in a four-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
73+
*/
74+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_4d( struct ndarray *arrays[], void *data );
75+
76+
/**
77+
* Tests whether every element is truthy in a four-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
78+
*/
79+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_4d_blocked( struct ndarray *arrays[], void *data );
80+
81+
/**
82+
* Tests whether every element is truthy in a five-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
83+
*/
84+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_5d( struct ndarray *arrays[], void *data );
85+
86+
/**
87+
* Tests whether every element is truthy in a five-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
88+
*/
89+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_5d_blocked( struct ndarray *arrays[], void *data );
90+
91+
/**
92+
* Tests whether every element is truthy in a six-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
93+
*/
94+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_6d( struct ndarray *arrays[], void *data );
95+
96+
/**
97+
* Tests whether every element is truthy in a six-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
98+
*/
99+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_6d_blocked( struct ndarray *arrays[], void *data );
100+
101+
/**
102+
* Tests whether every element is truthy in a seven-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
103+
*/
104+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_7d( struct ndarray *arrays[], void *data );
105+
106+
/**
107+
* Tests whether every element is truthy in a seven-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
108+
*/
109+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_7d_blocked( struct ndarray *arrays[], void *data );
110+
111+
/**
112+
* Tests whether every element is truthy in an eight-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
113+
*/
114+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_8d( struct ndarray *arrays[], void *data );
115+
116+
/**
117+
* Tests whether every element is truthy in an eight-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
118+
*/
119+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_8d_blocked( struct ndarray *arrays[], void *data );
120+
121+
/**
122+
* Tests whether every element is truthy in a nine-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
123+
*/
124+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_9d( struct ndarray *arrays[], void *data );
125+
126+
/**
127+
* Tests whether every element is truthy in a nine-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
128+
*/
129+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_9d_blocked( struct ndarray *arrays[], void *data );
130+
131+
/**
132+
* Tests whether every element is truthy in a ten-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
133+
*/
134+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_10d( struct ndarray *arrays[], void *data );
135+
136+
/**
137+
* Tests whether every element is truthy in a ten-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
138+
*/
139+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_10d_blocked( struct ndarray *arrays[], void *data );
140+
141+
/**
142+
* Tests whether every element is truthy in an n-dimensional input ndarray and assigns the result to a zero-dimensional output ndarray.
143+
*/
144+
int8_t stdlib_ndarray_every_{{SIGNATURE}}_nd( struct ndarray *arrays[], void *data );
145+
146+
#ifdef __cplusplus
147+
}
148+
#endif
149+
150+
#endif // !STDLIB_NDARRAY_BASE_EVERY_{{INCLUDE_GUARD}}_H

0 commit comments

Comments
 (0)