Hacker News new | ask | show | jobs
by xyzzy_plugh 998 days ago
Is the order of function parameters significant?
1 comments

Fair. Type parameters is significant when you call the function with explicit type parameters. Ex: clone1 := Clone1[[]string, string]

But when type parameters values are infered, the order looks much less important for the API designer.

Do we have rules (idioms) somewhere about a recommended order for such parameter types?