https://issues.dlang.org/show_bug.cgi?id=14077
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from [email protected] --- (In reply to monkeyworks12 from comment #1) > (In reply to Kenji Hara from comment #0) > > Possible case: > > > > int[$] returnSArr() > > { > > return [1, 2]; > > } > > Also consider the following: > > auto[$] returnSArr() > { > return [1, 2]; > } > > const[$] returnSArr() > { > return [1, 2]; > } > > //Etc. > > > int[auto] returnAA() > { > return ["asdf":1]; > } > > auto[auto] returnAA() > { > return ["asdf":1]; > } > > immutable[auto[$]] returnAA() > { > return [[1, 2]:1]; > } What are the use cases for all this? Implementation efforts have a cost in time. --
