`Some(x).into_iter()` is a handy idiom when chaining iterators together. It would be nice to have a shortcut function defined as: ``` rust use std::option::Item; fn item<T>(x: T) -> Item<T> { Some(x).into_iter() } ```