source: utilitiespy/tudelft/utilities/immutablelist/Permutations.py@ 1359

Last change on this file since 1359 was 1342, checked in by wouter, 6 days ago

#413 added Permutations-related classes. Pending tests

File size: 315 bytes
Line 
1from tudelft.utilities.immutablelist.ImmutableList import ImmutableList
2from typing import TypeVar
3
4
5E = TypeVar('E')
6class 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.