Function use_lazy

Source
pub fn use_lazy<F, V, I>(make_value: F) -> UseLazy<F, V>
where F: FnMut(Range<usize>, bool) -> I + 'static, I: IntoIterator<Item = V>,