We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2167636 commit fa505bdCopy full SHA for fa505bd
ext/numo/narray/ndloop.c
@@ -38,6 +38,8 @@ typedef struct NA_LOOP_XARGS {
38
bool free_user_iter; // alloc LARG(lp,j).iter=lp->xargs[j].iter
39
} na_loop_xargs_t;
40
41
+typedef struct NA_MD_LOOP na_md_loop_t;
42
+
43
typedef struct NA_MD_LOOP {
44
int narg;
45
int nin;
@@ -56,7 +58,7 @@ typedef struct NA_MD_LOOP {
56
58
VALUE reduce;
57
59
VALUE loop_opt;
60
ndfunc_t *ndfunc;
- void (*loop_func)();
61
+ void (*loop_func)(ndfunc_t *, na_md_loop_t *);
62
} na_md_loop_t;
63
64
#define LARG(lp,iarg) ((lp)->user.args[iarg])
0 commit comments