Eduardo Sánchez Muñoz

Results 20 comments of Eduardo Sánchez Muñoz

> Do you have any links discussing this change for Julia? https://github.com/JuliaLang/julia/pull/24647 I think the PR originally only removed/deprecated the old aliases (https://github.com/JuliaLang/julia/pull/24647#issuecomment-348320505), and then it was modified to add...

I'm also experiencing this, making the extension unusable.

Additionally, adding `println!("{:?}", lex.slice().as_bytes());` prints `[206]`, which means it is returning an invalid utf8 string.

I rebased on top of latest master and ran the benchmark (first on master and then on my branch): Criterion logs ``` ubig_add/10 time: [2.2662 ns 2.2785 ns 2.2912 ns]...

You probably want to do something like this (note the `as _`): ```rust use x11rb::protocol::{shm::ConnectionExt as _, sync::ConnectionExt as _}; ``` That will bring trait methods into scope, but not...

> I think we already (pretty much) do that, except for the `*Aux` parameter being required. Dunno if adding a builder with all values wrapped in `Optional` helps much. I...

Since it was only used to allocate slices of `Word`, I simplified it accordingly. Is there a need to allocate arbitrary layouts?

I think I had added that thinking of https://github.com/psychon/x11rb/issues/369. For example, if `ClientMessageData` gets replaced by a switch, that switch needs to be handled as a fixed size type because...

It seems that using dbgprint instead of print (last commit) fixes it, but has not been released into a version yet. Could you please release a version that includes that...