Containing Filter
class ContainingFilter<TInput>(collection: Collection<TInput>) : IFilter<TInput, Unit> , Iterable<TInput> (source)
A filter, which only returns a non-null value, if the given collection contains the input.
Parameters
TInput
The type the filter accepts
collection
The collection to check for the input