this post was submitted on 26 Jan 2023
8 points (100.0% liked)

Rust Programming

8431 readers
21 users here now

founded 5 years ago
MODERATORS
 

Did you know you can just whip out curly-braces all over the place in Rust and Go?

But why on Earth would you even want to do this?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 2 years ago

Yeah, in inline functions, you have to use implicit returns, whereas in regular/named functions, you have to use explicit returns.

Although, there is yet another special case to that rule in that you can use labeled explicit returns in inline functions like so:

list.map { value ->
    return@map value*2
}