Is there a builtin
fn f<T>(x: T) -> ()
{
()
}
The goal is, for one liners on match arms, to be able to write f(...)
instead of
{
...;
}
Is there a builtin
fn f<T>(x: T) -> ()
{
()
}
The goal is, for one liners on match arms, to be able to write f(...)
instead of
{
...;
}
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.