kutil 0.0.6

Kutil utilities collection
Documentation
1
2
3
4
5
6
7
8
9
//
// HasLength
//

/// Has length.
pub trait HasLength {
    /// Length.
    fn len(&self) -> usize;
}