The latest updates on all JetBrains products and topics
RustRover Team Lead
Junie is now integrated into the AI chat. The separate interfaces have merged into a single, unified space (available in Beta).
We’re excited to announce the general availability of RustRover, the powerhouse IDE for Rust developers!
The RustRover bug-fix update 2023.2 EAP 2 is now available! The fixes included in this bug-fix update are listed below. Download build 232.9921.62 from our website, through the Toolbox App. Further updates of standalone installation will be available from inside an IDE as well. This update…
“When will there be a Rust IDE?” Update: RustRover is now generally available, with free non-commercial use and commercial licensing options. Learn more about the RustRover release. We get this question from our users quite frequently, and today we’re happy to announce that the day has arrived…
How many times you wrote code like this to achieve a simple purpose? Mapping values of an array: $result =; foreach ($items as $key => $item) { $resul = func($item); } Filtering: $result =; foreach ($items as $key => $item) { if (condition($item)) { $resul = $item;…