Function erg_common::debug_fmt_iter

source ·
pub fn debug_fmt_iter<T: Debug, I: Iterator<Item = T>>(iter: I) -> String
Examples found in repository?
set.rs (line 59)
58
59
60
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{{{}}}", debug_fmt_iter(self.elems.iter()))
    }