$(D_KEYWORD in) operator.
Type comparable with the element type, used for the lookup.
Element to be searched for.
$(D_KEYWORD true) if the given element exists in the container, $(D_KEYWORD false) otherwise.
Set!int set; assert(5 !in set); set.insert(5); assert(5 in set); assert(8 !in set);
See Implementation
$(D_KEYWORD in) operator.