Ivan Tham

Results 525 comments of Ivan Tham

I still don't quite understand the example, is there any real examples that popular crates used for this?

Something new to addon for cell if anyone work on cell. https://plv.mpi-sws.org/rustbelt/ghostcell/

I talked about this in https://github.com/rust-unofficial/patterns/pull/100#issuecomment-755043381

An additional note, there is doc aliases `reduce` and `inject` for `fold`. When I get started with rust, I was searching for `reduce` in docs but I can't find it,...

URL broken. Is the example even considered decorator? Shouldn't it be something like actix-web-codegen or rocket proc macro that looks more like a decorator?

thiserror (library) and anyhow (application) is what I mostly use.

Yeah, after I create the issue I noticed that it doesn't seemed to be an issue for this repo. I thought that it was somehow changed here, I didn't track...

I think in some cases it puts an empty space but in some cases it does not, so weird. I believe adding `# fn main()` there is no new line....

``` git fetch git rebase origin/master ... edit if there are confilcts git add ... git rebase --continue # do this as many times as needed git push -f ```

Note that there are other method to have type state, like each one of the state as their own struct, which is more useful when different states have different types....