pub trait Scope<'a, T: 'a = usize> {
// Required methods
fn size(&self) -> usize;
fn value(&'a self, index: usize) -> T;
fn len(&self) -> usize;
// Provided methods
fn is_empty(&self) -> bool { ... }
fn iter_values(&'a self) -> ScopeIter<'a, T> ⓘ
where Self: Sized { ... }
}
Expand description
Size and solution domain of a problem