Skip to content

Commit

Permalink
README fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed Jan 29, 2025
1 parent 43dfcf1 commit 619b3b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,10 @@ Quick Reference
| [`union`](#union) | Union of iterables | `set.union(...iterables)` | `set.unionAsync(...iterables)` |

#### Combinatorics
| Iterator | Description | Sync Code Snippet | Async Code Snippet |
|------------------------------------------------|----------------------------------------|---------------------------------------------------|--------------------------------------------------------|
| [`cartesianProduct`](#cartesian-product) | Iterate cartesian product of iterables | `set.cartesianProduct(...iterables)` | `set.cartesianProductAsync(...iterables)` |
| [`permutations`](#permutations) | Permutations of iterables | `set.permutations(data, length)` | `set.permutationsAsync(data, length)` |
| Iterator | Description | Sync Code Snippet | Async Code Snippet |
|------------------------------------------------|----------------------------------------|-----------------------------------------------|----------------------------------------------------|
| [`cartesianProduct`](#cartesian-product) | Iterate cartesian product of iterables | `combinations.cartesianProduct(...iterables)` | `combinations.cartesianProductAsync(...iterables)` |
| [`permutations`](#permutations) | Permutations of iterables | `combinations.permutations(data, length)` | `combinations.permutationsAsync(data, length)` |

#### Summary
| Summary | Description | Sync Code Snippet | Async Code Snippet |
Expand Down

0 comments on commit 619b3b4

Please sign in to comment.