Fabio Krapohl

Results 36 comments of Fabio Krapohl

1. Rust `Vec` is not a mathematical vector, but a dynamic array. 2. I was wrong because some programming language I'm using, which is pretty close to LLVM, supports vectors...

So instead of reading and writing to a byte slice you would read and write to/from a stream in the trait implementations already? And when you really need it as...

But this seems to not to work with this crate, since it cannot be done without std. Maybe I should look for another crate or write one myself. A crate,...

[In case you're interested](https://gitlab.com/porky11/data-stream)

I wanted to use it for simple conversion to binary, similar to serde bincode. I also need std and heap allocation. Serde just seems like bloat to me, especially when...

I don't see this problem. There don't need to be special cases for serialization of different kinds of data types. The special case is already the implementation of the serialization...

maybe I should add an example: ``` //file test.h void n(float(*test)(int)); ``` I call `c2ffi test.h` => output: ``` [ { "tag": "function", "name": "n", "ns": 0, "location": "test.h:1:6", "variadic":...

@makoConstruct it shouldn't be too difficult to translate "naked mode" to s-expressions by reading reading with sweet-expressions enabled, and printing using the normal common lisp printer, you could write one...

Didn't know of alga when posting this. Maybe it's better to use alga or add new matching traits to alga when needed

why not just a second parameter, which specifies the convention (either a range, to cover all cases, or just a bool to switch between `-1..1` and `0..1`). Then in order...