Proposal: Add a .pick(val) Method to Collection Types Hello Rust community, I'd like to propose (or at least start a conversation around) the addition of a .pick(val) method to standard collection types like Vec, HashSet, and HashMap. What .pick(val) Would Do This method would search for a given value (or key), and: Return it if found Panic if not found Example (on Vec): let nums = vec![1, 2, 3]; let x = nums.pick(2); // returns 2 let y = nums.pick(4); // panics: "Value not f...