the signature for `where` would be something like ...
# language-proposals
g
the signature for
where
would be something like
Copy code
MyLibraryType<T>.where(condition: BooleanExpression): Stream<T> {
  val query: SQLQuery = condition.accept(WhereQueryBuilder)
  val result this.session.execute(query)
  return result.value;
}