Add TODO.

This commit is contained in:
takezoe
2013-06-29 15:31:29 +09:00
parent 4370ad06ea
commit 16f42f6087

View File

@@ -25,6 +25,7 @@ object Implicits {
}
}
// TODO Should this implicit conversion move to model.Functions?
implicit def extendsColumn(c1: Column[Boolean]) = new {
def &&(c2: => Column[Boolean], guard: => Boolean): Column[Boolean] = if(guard) c1 && c2 else c1
}