Hi, I’m using CQEngine from Kotlin and it has a static import on a function named ‘in’.
If I try to use this in Kotlin I get the following error (from IntelliJ and on compilation): “Expecting an element” - I guess because ‘in’ is a reserved word.
A Java example is here: https://github.com/npgall/cqengine/blob/master/code/src/test/java/com/googlecode/cqengine/query/simple/InTest.java
Any idea how I can properly call the ‘in’ method from Kotlin?