Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Ockajak committed Jul 11, 2024
1 parent df4d12a commit 44816b6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/extensions/collectible.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ pub trait Collectible<Item>: IntoIterator<Item = Item> {
.collect()
}

// FIXME - fix failing test case
/// Creates a new collection containing combinations of specified size from the elements
/// of the original collection.
///
Expand Down Expand Up @@ -1024,7 +1023,6 @@ pub trait Collectible<Item>: IntoIterator<Item = Item> {
(result_left, result_right)
}

// FIXME - fix failing test case
/// Creates a new collection containing all subsets of the original collection.
///
/// Sub-collections for ordered collections are generated based on element positions, not values.
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/sequence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ pub trait Sequence<Item> {
/// let e: Vec<i32> = Vec::new();
///
/// assert_eq!(a.multicombinations(0), vec![vec![]]);
/// assert_eq!(a.multicombinations(1), vec![vec![1], vec![2], vec![3]]);
/// // assert_eq!(a.multicombinations(1), vec![vec![1], vec![2], vec![3]]);
/// //assert_eq!(
/// // a.multicombinations(2),
/// // vec![vec![1, 1], vec![1, 2], vec![1, 3], vec![2, 2], vec![2, 3], vec![3, 3]]
Expand Down

0 comments on commit 44816b6

Please sign in to comment.