Robert Winslow

Results 21 comments of Robert Winslow

> 4. Allow different size vtable offsets. [...] you can't undo it when your table grows. Maybe a varint?

Would it be possible to have most (all?) of these features be specified with flags at the beginning of a payload? I know that that gets into "framing format" territory,...

> @rw > > > Would it be possible to have most (all?) of these features be specified with flags at the beginning of a payload? > > No, for...

@rhofour Such a PR would be welcome! I think it would be best if we made the type annotations optional, at first (toggled by a flatc flag?).

We should have a separate discussion about whether to remove Python 2 support. I'll just note that the last version of Python 2 was released in April 2020, so it's...

`key_compare_less_than` is a building block, but we don't support binary search yet. A PR would be welcome!

What is involved in implementing this?

gRPC in a few languages supports FlatBuffers. Doing it for Rust is just a matter of creating a good design and implementing that. Any takers? :-]

@fitzgen Would the function look like this? ```rust impl { #[inline] pub unsafe fn from_mut(x: &mut T) -> Self { Box(x) } ``` or ```rust impl { #[inline] pub unsafe...

@fitzgen Thanks for the reply! As to your question, I may have gotten ahead of myself. What I thought I wanted was `bumpalo::rc::Rc`. Are you suggesting that something like `&'bump...