The ScalaDoc of the functions has not been filled out.
I know that the methods are used for mimicking SQL's IN
keyword (eg, SELECT * FROM table WHERE id IN VALUES(1, 42, 101)
could be done with table.filter(_.id inSet Seq(1, 42, 101))
). I don't know what this "bind" version is or how to choose which I should be using.