fun <T : Any> ProcessedArgument<List<T>, T>.unique(): ProcessedArgument<Set<T>, T>
Only store unique values for this argument
Example:
val arg: Set<Int> by argument().int().multiple().unique()