playX

Results 82 comments of playX

Thanks! Would it also be possible to get saved context registers?

> Actually the start of the stack memory is the saved context. I am a little bit confused about this? Should I still use `into_raw`? Also, does the pointer returned...

> The memory looks like this: fixed size context memory(including saved registers) + real generator function stack. Yes, you should use `into_raw`, the pointer of the memory contains every thing...

> > The memory looks like this: fixed size context memory(including saved registers) + real generator function stack. Yes, you should use `into_raw`, the pointer of the memory contains every...

I actually managed to just copy-paste Pattern impl from `regex` crate and it seems to work just fine ```rust use std::str::pattern::{Pattern, SearchStep, Searcher}; use regress::Matches; pub struct RegexSearcher { haystack:...

@jjl hello! Comet is not maintained now. But I would like to see your implementation of RCImmix in Rust. :)

It is possible to implement `Send`. Serialize and Deserialize is a harder question to solve, but I know for sure you do not need to box types for serialization and...

It is possible, but there are a few problems that appear with iterators: inerior pointers. Until we support them properly it is impossible to have "safe" iterators implementation and you're...

> Hi wave > > Could the dependency on `ruby` be removed maybe, by e.g. committing the generated opcodes to the repository? Hello! I would not remove it as opcodes...

I am not sure how to do that properly but that is definitely a great idea. If you have some examples on how to do it or could do a...