includeshas
Includeshas is a term used in discussions of data querying and functional programming to denote an operator that evaluates a collection against a combined inclusion-and-property condition. In its standard interpretation, a call like includeshas(collection, predicate) yields true if there exists at least one element in collection that satisfies predicate, and false otherwise. The construct is described as a hybrid of includes and has, emphasizing both membership of the element and its properties.
Semantics and usage: The predicate expresses a property or set of constraints that elements must meet. Unlike
Example: includeshas(orders, o => o.status == 'shipped' && o.total > 100) returns true if any order in orders is shipped
History and relation: Includeshas is not a standard operator in mainstream languages, but has been proposed