Class: GraphQL::FloatValue
- Defined in:
- ext/graphql_parser/graphql_ruby.c
Instance Method Summary collapse
Instance Method Details
#value ⇒ Object
419 420 421 422 423 |
# File 'ext/graphql_parser/graphql_ruby.c', line 419
static VALUE float_value_get_value(VALUE self) {
struct GraphQLAstFloatValue *node;
TypedData_Get_Struct(self, struct GraphQLAstFloatValue, &float_value_type, node);
return rb_str_new_cstr(GraphQLAstFloatValue_get_value(node));
}
|