Comments.

Coverage to Makefile.toml.

Added branch to map! to allow for instantiating with default values.
This commit is contained in:
Martin Berg Alstad
2024-08-31 17:49:27 +02:00
parent 8fb89e0459
commit 7e2df67fee
10 changed files with 95 additions and 4 deletions

View File

@ -1,4 +1,6 @@
/// Modify self to contain only distinct elements.
pub trait Distinct {
/// Modify self to contain only distinct elements.
fn distinct(&mut self);
}