Steven Wang
val df = dataFrameOf("strcol") ("s1", "s2", "s3") val l = listOf("s1", "s2") // Is there any vectorized version to achieve this filter? df.filterByRow { l.contains(it["strcol"]) }