Sha256: 37ddd11e19db8757ba0d3d5542280c968faf166d9dfb70b60128b64145ca2f0c

Contents?: true

Size: 535 Bytes

Versions: 3

Compression:

Stored size: 535 Bytes

Contents

<%
set name: "new"
set singleton: true
%>
/*
  @overload <%=name%>(<%=args.map{|a| a[1]}.join(",")%>)
  @param  [Integer]  <%=args[0][1]%>
  @param  [Float]  <%=args[1][1]%>

  allocate instance of <%=class_name%> class.

<%= desc %>
 */
static VALUE
<%=c_func(2)%>(VALUE self, VALUE v1, VALUE v2)
{
    <%=struct%> *w;
    w = <%=func_name%>(NUM2SIZET(v1), NUM2DBL(v2));
    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_sizet_double.c
numo-gsl-0.1.1 ext/numo/gsl/gen/tmpl/c_new_sizet_double.c
numo-gsl-0.1.0 ext/numo/gsl/gen/tmpl/c_new_sizet_double.c