Hello!

Is it possible to make an InExpression work with a used-defined type?

struct MyCollection { ... }

MyCollection mc;

auto p = 123 in mc;
if (p) { ... }

Thanks!

LMB