containsAllIgnoreCase
fun containsAllIgnoreCase(searchCollection: Collection<String>, searchTerms: Collection<String>): Boolean
Convenience method for when you need to check an entire collection for membership in another collection.
Return
whether all searchTerms are in the searchCollection
Parameters
searchCollection
the collection you want to check membership in
searchTerms
the keys you're looking for