Last change
on this file since 1354 was 1342, checked in by wouter, 6 days ago |
#413 added Permutations-related classes. Pending tests
|
File size:
315 bytes
|
Line | |
---|
1 | from tudelft.utilities.immutablelist.ImmutableList import ImmutableList
|
---|
2 | from typing import TypeVar
|
---|
3 |
|
---|
4 |
|
---|
5 | E = TypeVar('E')
|
---|
6 | class Permutations(ImmutableList[ImmutableList[E]]):
|
---|
7 | '''
|
---|
8 | Permutations contains a list of permutations of some {@link ImmutableList}.
|
---|
9 | @param <E> type of the elements
|
---|
10 |
|
---|
11 | '''
|
---|
12 | pass
|
---|
13 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.