ext/numo/narray/gen/tmpl/format.c in numo-narray-0.9.0.4 vs ext/numo/narray/gen/tmpl/format.c in numo-narray-0.9.0.5
- old
+ new
@@ -1,7 +1,7 @@
static VALUE
-format_<%=tp%>(VALUE fmt, dtype* x)
+format_<%=type_name%>(VALUE fmt, dtype* x)
{
// fix-me
char s[48];
int n;
@@ -26,29 +26,29 @@
INIT_PTR_IDX(lp, 0, p1, s1, idx1);
INIT_PTR(lp, 1, p2, s2);
if (idx1) {
for (; i--;) {
x = (dtype*)(p1+*idx1); idx1++;
- y = format_<%=tp%>(fmt, x);
+ y = format_<%=type_name%>(fmt, x);
SET_DATA_STRIDE(p2, s2, VALUE, y);
}
} else {
for (; i--;) {
x = (dtype*)p1; p1+=s1;
- y = format_<%=tp%>(fmt, x);
+ y = format_<%=type_name%>(fmt, x);
SET_DATA_STRIDE(p2, s2, VALUE, y);
}
}
}
/*
Format elements into strings.
- @overload <%=method%> format
+ @overload <%=name%> format
@param [String] format
@return [Numo::RObject] array of formated strings.
*/
static VALUE
-<%=c_func%>(int argc, VALUE *argv, VALUE self)
+<%=c_func(-1)%>(int argc, VALUE *argv, VALUE self)
{
VALUE fmt=Qnil;
ndfunc_arg_in_t ain[2] = {{Qnil,0},{sym_option}};
ndfunc_arg_out_t aout[1] = {{numo_cRObject,0}};