artichoke_backend/extn/stdlib/set/
mod.rs1use std::ffi::CStr;
2
3use crate::extn::prelude::*;
4
5const SET_CSTR: &CStr = c"Set";
6const SORTED_SET_CSTR: &CStr = c"SortedSet";
7static SET_RUBY_SOURCE: &[u8] = include_bytes!("vendor/set.rb");
8
9pub fn init(interp: &mut Artichoke) -> InitializeResult<()> {
10 let spec = class::Spec::new("Set", SET_CSTR, None, None)?;
11 interp.def_class::<Set>(spec)?;
12 let spec = class::Spec::new("SortedSet", SORTED_SET_CSTR, None, None)?;
13 interp.def_class::<SortedSet>(spec)?;
14 interp.def_rb_source_file("set.rb", SET_RUBY_SOURCE)?;
15
16 Ok(())
17}
18
19#[derive(Debug, Clone, Copy)]
20pub struct Set;
21
22#[derive(Debug, Clone, Copy)]
23pub struct SortedSet;