#![feature(try_reserve)] use std::collections::HashSet; let mut set: HashSet<i32> = HashSet::new(); set.try_reserve(10).expect("why is the test harness ...
確定! 回上一頁