You would like to define a Golang function which accepts different types (or structs) and take different actions depending on your input. This is very similar to the "visitor design pattern"
Writing SQLite Extensions in Rust
Explainer SQLite allows you to create custom virtual tables which allow you to query an external data source using SQL, lowering the bar to entry and homogenizing your data sources In the past we've looked at creating virtual tables in golang, and here we do something similar in rust. One notable improvement here is the … Continue reading Writing SQLite Extensions in Rust
You must be logged in to post a comment.