Contents:
A set of utilities related with collections.
jinete.utils.collections.
remove_duplicates
Remove the duplicated elements of a list, preserving its original order.
seq (List[E]) – The original list.
List[E]
A list with elements ordered as a in the initial one, but removing the duplicated elements.