source:
utilitiespy/tudelft/utilities/immutablelist/Permutations.py
Last change on this file was 1342, checked in by , 6 days ago | |
---|---|
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.