Ruby 4.1.0dev (2026-09-20 revision edce07a8c93895be8eeb2d27400aa138cc8a3cf9)
set.h
1#ifndef INTERNAL_SET_H /*-*-C-*-vi:se ft=c:*/
2#define INTERNAL_SET_H
11#include "ruby/internal/config.h"
12#include "ruby/ruby.h"
13
14VALUE rb_ident_set_new(void);
15bool rb_set_add_no_check(VALUE set, VALUE element);
16bool rb_set_delete_no_check(VALUE set, VALUE element);
17VALUE rb_set_to_a(VALUE set);
18
19#endif /* INTERNAL_SET_H */
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40