this post was submitted on 21 Nov 2025
277 points (96.3% liked)
Technology
77096 readers
4336 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related news or articles.
- Be excellent to each other!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
- Check for duplicates before posting, duplicates may be removed
- Accounts 7 days and younger will have their posts automatically removed.
Approved Bots
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I feel like I've seen an insane number of error messages in various apps and websites around the
unwrapmethod.But this is on a result type, right? I'd figure the point would be that you would match on it and that the unwrap itself, which if my assumptions are correct, is more like
get value or throw, should either not exist or take a default value. You shouldn't be able to directly get the value of a monad."unwrap should not exist" is true as long as you don't want to ever use the language. If you actually want to use it, you need it. At least while developing.
Some values cannot have a default value. And some cases it's preferable to panic even if it has a default value.
unwrap is not the problem. Cloudflare's usage is.