Creates an instance of FilterList.
Optional
andFilters: Filterable<EntityT, DeSerializersT>[]Filters to be combined by logical conjunction (and
).
Optional
orFilters: Filterable<EntityT, DeSerializersT>[]Filters to be combined by logical disjunction (or
).
Data structure to combine Filterables conjunctively and / or disjunctively. A FilterList matches when all filterables within the
andFilters
match and when at least one filterable within theorFilters
matches. Should not be used directly.