HackerTrans
TopNewTrendsCommentsPastAskShowJobs

avandecreme

no profile record

Submissions

Tips and tricks to avoid cloning in Rust

antoine.vandecreme.net
2 points·by avandecreme·قبل 3 أشهر·0 comments

Understanding Async Rust Closures

antoine.vandecreme.net
3 points·by avandecreme·قبل 5 أشهر·1 comments

Understanding Rust Closures

antoine.vandecreme.net
68 points·by avandecreme·قبل 6 أشهر·34 comments

comments

avandecreme
·قبل 4 أشهر·discuss
I didn't know about https://docs.rs/temporal_rs/latest/temporal_rs/

I wonder if it has a chance to replace chrono and jiff in the rust ecosystem.
avandecreme
·قبل 5 أشهر·discuss
Follow up from my previous article about rust closures. This time it looks into async closures.
avandecreme
·قبل 6 أشهر·discuss
This article discusses making captures more flexible: https://smallcultfollowing.com/babysteps/blog/2025/10/22/exp...

I agree it would be nice, in particular to make it easier to understand when learning the concept.
avandecreme
·قبل 7 أشهر·discuss
This reminds me of when I learned to program on my casio calculator.

There was a function to detect a key press which would return a number identifying the pressed key.

I needed to map that number to the letter printed on the key to print it on the screen. I don't remember whether there was no hashmap data structure or I just didn't know about it, but I implemented it with a serie of if.

The problem with that solution is that while mapping A was fast, Z was very slow because it was at the end of the list. That is how I discovered divide and conquer/ dichotomy with if branches.