Ok, so to me it would seem reasonable to allow the...
# getting-started
h
Ok, so to me it would seem reasonable to allow the following (which does not work either):
Copy code
fun ColumnSelector.AND(other: ColumnSelector): ColumnSelector = fun ColumnSelector {
    return this.this@AND().zip(this.other()).map { nullAwareAnd(it.first, it.second) }
}