NLINKER_RUST Telegram 1817
Открываю релиз ноты Rust, вижу не очень красивый коде сниппет
fn main() {
let array = [1, 2, 3, 4, 5];

// Было
for item in array.iter().copied() {
println!("{}", item);
}

// Стало
for item in std::array::IntoIter::new(array) {
println!("{}", item);
}
}
И дальше: "Обратите внимание, что это было добавлено как отдельный метод, вместо .into_iter(), так как сейчас оно ломает текущее соглашение о том, что .into_iter() относится к срезам по ссылочному итератору."

Увы, нужно признать, разработчики языка допустили архитектурную ошибку💥, теперь это соглашение ушло в библиотеки и сторонний код. Бывает.

Теперь будем терпеть, если вдруг в каком-то месте нужно будет переключиться с вектора на массив (или обратно), нужно будет протыкать и форычи заодно.



tgoop.com/nlinker_rust/1817
Create:
Last Update:

Открываю релиз ноты Rust, вижу не очень красивый коде сниппет

fn main() {
let array = [1, 2, 3, 4, 5];

// Было
for item in array.iter().copied() {
println!("{}", item);
}

// Стало
for item in std::array::IntoIter::new(array) {
println!("{}", item);
}
}
И дальше: "Обратите внимание, что это было добавлено как отдельный метод, вместо .into_iter(), так как сейчас оно ломает текущее соглашение о том, что .into_iter() относится к срезам по ссылочному итератору."

Увы, нужно признать, разработчики языка допустили архитектурную ошибку💥, теперь это соглашение ушло в библиотеки и сторонний код. Бывает.

Теперь будем терпеть, если вдруг в каком-то месте нужно будет переключиться с вектора на массив (или обратно), нужно будет протыкать и форычи заодно.

BY Linker Unsafe


Share with your friend now:
tgoop.com/nlinker_rust/1817

View MORE
Open in Telegram


Telegram News

Date: |

The optimal dimension of the avatar on Telegram is 512px by 512px, and it’s recommended to use PNG format to deliver an unpixelated avatar. 1What is Telegram Channels? Private channels are only accessible to subscribers and don’t appear in public searches. To join a private channel, you need to receive a link from the owner (administrator). A private channel is an excellent solution for companies and teams. You can also use this type of channel to write down personal notes, reflections, etc. By the way, you can make your private channel public at any moment. A few years ago, you had to use a special bot to run a poll on Telegram. Now you can easily do that yourself in two clicks. Hit the Menu icon and select “Create Poll.” Write your question and add up to 10 options. Running polls is a powerful strategy for getting feedback from your audience. If you’re considering the possibility of modifying your channel in any way, be sure to ask your subscribers’ opinions first. In handing down the sentence yesterday, deputy judge Peter Hui Shiu-keung of the district court said that even if Ng did not post the messages, he cannot shirk responsibility as the owner and administrator of such a big group for allowing these messages that incite illegal behaviors to exist.
from us


Telegram Linker Unsafe
FROM American