I mean something like this:
fun operator Table.get(column_name: String) = this.column(column_name)
// Currently gives an error: "Expecting a top level declaration"
Table
instance currently works like: table.column("column_name")
I want to make it work like this: table["column_name"]