snaggen to Rust · 1 year agoAnnouncing Rust 1.76.0blog.rust-lang.orgexternal-linkmessage-square23fedilinkarrow-up1105arrow-down10
arrow-up1105arrow-down1external-linkAnnouncing Rust 1.76.0blog.rust-lang.orgsnaggen to Rust · 1 year agomessage-square23fedilink
minus-squareanlumo@feddit.delinkfedilinkEnglisharrow-up19arrow-down2·1 year agoOh, inspect has finally arrived! That will help a ton with debug logging.
minus-squareλλλlinkfedilinkarrow-up7·edit-21 year agoDo you mind explaining? Maybe with the context of another languages equivalent?
minus-squareanlumo@feddit.delinkfedilinkEnglisharrow-up15arrow-down2·1 year agolet bar: Result<T, E> = ...; let foo = bar.inspect(|value| log::debug("{}", value)); is equivalent to let bar: Result<T, E> = ...; let foo = bar.map(|value| { log::debug("{}", value); value });
minus-squarexavlinkfedilinkarrow-up1arrow-down1·1 year agoWarning: in the first case “value” is actually a shared reference, not a value.
minus-squareGissaMittJobb@lemmy.mllinkfedilinkarrow-up2·1 year agoLooks vaguely like Stream::peek from Java, I think? There’s an equivalent method in Iterator::inspect.
minus-squareowseilinkfedilinkarrow-up1·edit-21 year agoit’s just a way to use map with a reference instead of the value, by what I understood. could be usefull for logging values in a Result so you can see it. However I think you can already do that by just mapping and returning the variable.
Oh,
inspect
has finally arrived! That will help a ton with debug logging.Do you mind explaining? Maybe with the context of another languages equivalent?
is equivalent to
Elegant. Thanks!
Warning: in the first case “value” is actually a shared reference, not a value.
Looks vaguely like
Stream::peek
from Java, I think? There’s an equivalent method inIterator::inspect
.it’s just a way to use map with a reference instead of the value, by what I understood.
could be usefull for logging values in a Result so you can see it. However I think you can already do that by just mapping and returning the variable.