Stellar Language Inclusion Checks (in and not in)
insupports string contains. For example,'foo' in 'foobar' == trueinsupports collection contains. For example,'foo' in [ 'foo', 'bar' ] == trueinsupports map key contains. For example,'foo' in { 'foo' : 5} == truenot inis the negation of the in expression. For example,'grok' not in 'foobar' == true`

