limbo/cli
Pekka Enberg 936ae307b7 core: Kill value type
We currently have two value types, `Value` and `OwnedValue`. The
original thinking was that `Value` is external type and `OwnedValue` is
internal type. However, this just results in unnecessary transformation
between the types as data crosses the Limbo library boundary.

Let's just follow SQLite here and consolidate on a single value type
(where `sqlite3_value` is just an alias for the internal `Mem` type).
The way this will eventually work is that we can have bunch of
pre-allocated `OwnedValue` objects in `ProgramState` and basically
return a reference to them all the way to the application itself, which
extracts the actual value.
2025-02-26 10:57:45 +02:00
..
app.rs core: Kill value type 2025-02-26 10:57:45 +02:00
Cargo.toml bindings/rust: Rename crate to "limbo" 2025-02-12 16:49:53 +02:00
import.rs core: Move result row to ProgramState 2025-02-06 11:52:26 +02:00
input.rs cli: Rename "raw" output mode to "list" 2025-02-17 21:26:15 +02:00
main.rs cleanup shell tests and cli 2025-02-13 00:49:12 -05:00
opcodes_dictionary.rs fix: lint warnings 2024-07-08 22:43:11 +05:30