select_with_msg

Function select_with_msg 

Source
pub fn select_with_msg<T, I, M>(
    iterator: I,
    message: M,
) -> StdQuestionBuilder<T>
where T: PartialEq + FromStr + Send + Sync + 'static, <T as FromStr>::Err: Send + Sync + Error + 'static, I: IntoIterator<Item = T> + 'static, M: ToString + Send + Sync + 'static,
Expand description

Test if the value is inside an iterator

ยงRemarks

To prevent infinite loops, make sure iterator is finite.