narui_core 0.1.2

unwrapped core crate of the narui gui framework
Documentation
1
2
3
4
5
use std::fmt::{Formatter, Result};

pub(crate) fn print_vec_len<T>(vec: &[T], fmt: &mut Formatter) -> Result {
    write!(fmt, "Vec {{ len() = {} }}", vec.len())
}