Example: A feature has properties: ``` { colors: ['red', 'green', 'blue' } ``` now, I want to filter the features that has one or more of the colors I want to filter on. ``` filter: ['any', ['inArray', 'colors', 'green'], ['inArray', 'colors', 'blue'] ] ``` or ``` filter: [ '!inArray', 'colors', 'green' ] ``` It seems like the inverse variant of the membership filter 'in' and '!in'