|
|
|
|
|
by Dagonfly
32 days ago
|
|
It's the one thing I miss from Swift when I'm using literally any other language. Interal and external parameter names. I would love for Rust to adopt: fn foo(namedParam internalName: bool) { // use internalName here }
fn foo(unnamedParam: bool)
|
|