from tudelft.utilities.immutablelist.ImmutableList import ImmutableList from typing import TypeVar E = TypeVar('E') class Permutations(ImmutableList[ImmutableList[E]]): ''' Permutations contains a list of permutations of some {@link ImmutableList}. @param type of the elements ''' pass