This service consumes a list of strings and outputs the string list with duplicate entries removed. The first occurrence of a duplicate is preserved and all subsequent ones omitted. For example, the list ['a','b','c','b','a',d'] gives the output ['a','b','c','d'].

Input ports
- stringlist - The possibly empty list from which duplicate strings are to be removed. This is a mandatory parameter.
Output ports
- strippedlist - The stringlist with duplicate values removed.
Examples
Example workflows can be found on myExperiment showing: