Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Ockajak committed Jul 9, 2024
1 parent 09754b5 commit b648052
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ data.group_by(|x| x % 2); // HashMap::from([(0, vec![2]), (1, vec![1, 3]
| *all_unique* | :heavy_check_mark: | :heavy_check_mark: | | |
| *any* | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| *cartesian_product* | :heavy_check_mark: | | | |
| *combinations* | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: |
| *combinations* | :heavy_check_mark: | | :heavy_check_mark: | |
| *chunked* | :heavy_check_mark: | | | |
| *chunked_by* | :heavy_check_mark: | | | |
| *chunked_exact* | :heavy_check_mark: | | | |
Expand Down Expand Up @@ -111,7 +111,7 @@ data.group_by(|x| x % 2); // HashMap::from([(0, vec![2]), (1, vec![1, 3]
| *minmax_by_key* | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| *minmax_item* | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| *move_item* | :heavy_check_mark: | | | |
| *multicombinations* | :heavy_check_mark: | | | :heavy_check_mark: |
| *multicombinations* | :heavy_check_mark: | | | |
| *pad* | :heavy_check_mark: | :heavy_check_mark: | | |
| *pad_with* | :heavy_check_mark: | :heavy_check_mark: | | |
| *partition* | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: |
Expand Down
3 changes: 0 additions & 3 deletions src/extensions/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ pub trait Map<Key, Value> {
// FIXME - add documentation
// FIXME - implement these methods
// all_unique
// any
// combinations
// combinations_repetitive
// includes
// powerset
// subset
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
/// | *all_unique* | :heavy_check_mark: | :heavy_check_mark: | | |
/// | *any* | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
/// | *cartesian_product* | :heavy_check_mark: | | | |
/// | *combinations* | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: |
/// | *combinations* | :heavy_check_mark: | | :heavy_check_mark: | |
/// | *chunked* | :heavy_check_mark: | | | |
/// | *chunked_by* | :heavy_check_mark: | | | |
/// | *chunked_exact* | :heavy_check_mark: | | | |
Expand Down Expand Up @@ -115,7 +115,7 @@
/// | *minmax_by_key* | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
/// | *minmax_item* | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
/// | *move_item* | :heavy_check_mark: | | | |
/// | *multicombinations* | :heavy_check_mark: | | | :heavy_check_mark: |
/// | *multicombinations* | :heavy_check_mark: | | | |
/// | *pad* | :heavy_check_mark: | :heavy_check_mark: | | |
/// | *pad_with* | :heavy_check_mark: | :heavy_check_mark: | | |
/// | *partition* | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: |
Expand Down

0 comments on commit b648052

Please sign in to comment.