use dolphindb::types::*;
fn main() {
let _v = Vector::<Int>::new();
let _v = Vector::<Int>::with_capacity(1);
let _s = Set::<Int>::new();
let _s = Set::<Int>::with_capacity(1);
let _d = Dictionary::<Int>::new();
let _d = Dictionary::<Int>::with_capacity(1);
let _v = Vector::<Int>::from_raw(&[1]);
let _v = IntVector::from_raw(&[1]);
let _a = IntArrayVector::new();
let mut v = IntVector::new();
v.push(1.into());
let _t = v[0];
let mut s = Set::<Int>::new();
s.insert(1.into());
s.get(&Int::new(1));
let mut d = Dictionary::<Int>::new();
d.insert(1.into(), Int::new(2));
d.insert(1.into(), Double::new(2.0));
d.get(&Int::new(1));
let mut a = IntArrayVector::new();
a.push(vec![1, 2, 3]);
}