Generic collection traits.
The Get
trait provides safe access to a value at a specified position. The trait is generic over both keys and values of the collection, as well as their lifetimes. Due to the use of generic associated types, both the received index and the return value of the get
method can be either borrowed or owned.
```rust use collectivity::Get;
fn multiply_at(
data: impl for<'b> Get
The Len
trait provides the len
method, which returns the number of entries within a collection.
```rust use collectivity::Len;
fn check_len( data: impl Len ) -> usize { data.len() } ```
License: MIT