Sha256: b09fcc53a5d21a3b0d5b773f475bc04a6327988fb41a2d3d4a9793cd6163e6aa

Contents?: true

Size: 446 Bytes

Versions: 3

Compression:

Stored size: 446 Bytes

Contents

<%
set name: "new"
set singleton: true
%>
/*
  @overload new(<%=args[0][1]%>)
  @param [Float] <%=args[0][1]%>

  allocate instance of <%=class_name%> class.

 <%= desc %>
 */
static VALUE
<%=c_func(1)%>(VALUE self, VALUE p)
{
    <%=struct%> *w;
    w = <%=func_name%>(NUM2DBL(p));
    if (!w) {
        rb_raise(rb_eNoMemError,"fail to allocate struct");
    }
    return TypedData_Wrap_Struct(<%=class_var%>, &<%=data_type_var%>, (void*)w);
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
numo-gsl-0.1.2 ext/numo/gsl/gen/tmpl/c_new_double.c
numo-gsl-0.1.1 ext/numo/gsl/gen/tmpl/c_new_double.c
numo-gsl-0.1.0 ext/numo/gsl/gen/tmpl/c_new_double.c