65
submitted 7 months ago* (last edited 7 months ago) by MaliciousKebab@sh.itjust.works to c/programmer_humor@programming.dev

signal-2024-02-01-19-47-41-855

you are viewing a single comment's thread
view the rest of the comments
[-] sukhmel@programming.dev 2 points 7 months ago* (last edited 7 months ago)

Also, anyhow::Context provides a convenient way to turn Option<T> and Result<T, Into<anyhow::Error>> into anyhow::Result<T>

Like this:

use anyhow::Context;

// to my understanding it's better to 
// specify the types when their names 
// are the same as in prelude to improve
// readability and reduce name clashing
fn main() -> anyhow::Result<()> {
    let text = "seeds: 79 14 55 13\nwhatever";
    let seeds: Vec<u32> = text
        .lines()
        .next()
        .context("No first line!")?     // This line has changed
        .split_whitespace()
        .skip(1)
        .map(str::parse)
        .collect::<Result<_, _>>()?;
    println!("seeds: {:?}", seeds);
    Ok(())
}

Edit: line breaks

this post was submitted on 01 Feb 2024
65 points (91.1% liked)

Programmer Humor

19187 readers
1143 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS