9from abc
import ABC, abstractmethod
12from .strategy_entryinformation
import EntryInformation
40 def Sort(self, entries : list[EntryInformation]) ->
None:
Represents a sorting strategy.
str ToString(self)
Return a string representation of the sorting strategy.
None Sort(self, list[EntryInformation] entries)
Sort the specified list of entries in place.
Identifies the different sorting strategies available.