Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
skldj28d2
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
skldj28d2
2y ago
Axum is most likely to be supported long term since it has quite a bit of support and is a Tokio project but it's not nearly as batteries included as something like Rails or Django. I doubt any of the current batteries included Rust w
2.
▲
by
skldj28d2
2y ago
> with Bun leading the way Definitely leading the way in segfaults.
3.
▲
by
skldj28d2
2y ago
https://github.com/golang/go/issues/61901 https://github.com/golang/go/issues/61902 https://github.com/golang/go/issues/61900 https://
4.
▲
by
skldj28d2
2y ago
I know. There are already proposals to add new functions to many of these packages that return iterators.
5.
▲
by
skldj28d2
2y ago
Basically every custom data structure right now has some custom implementation of iterators. This will set a standard and make them usable with range loops. Even simple library methods like scanner.Scan, strings.Split, regex.FindAll or sql.
6.
▲
by
skldj28d2
2y ago
They'll be used primarily by library authors but most people will end up consuming them a lot. They'll eliminate a lot of unnecessary intermediate slice allocations.
7.
▲
by
skldj28d2
3y ago
Python is the same but there's not nearly enough incentive to move to another slow language. A lot of people that are interested in using something other than Python want a language that doesn't require everything to be written in
8.
▲
by
skldj28d2
3y ago
Erlang/Elixir are very slow for most computationally expensive tasks.