[Issue 12751] Avoid heap allocations in some cases of array concatenation

2015-06-12 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12751 Kenji Hara changed: What|Removed |Added Keywords||pull --- Comment #2 from Kenji Hara --- https:

[Issue 12751] Avoid heap allocations in some cases of array concatenation

2014-06-02 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12751 --- Comment #1 from bearophile_h...@eml.cc --- Other basic cases that can be supported: void main() @nogc { int[2] a = [10, 20]; int[3] b = [40, 50, 60]; int[6] c = a ~ 30 ~ b; } Currently DMD 2.066alpha gives: test.d(4,16): Error: can

[Issue 12751] Avoid heap allocations in some cases of array concatenation

2021-12-08 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12751 Stanislav Blinov changed: What|Removed |Added CC||stanislav.bli...@gmail.com --- Comment #3

[Issue 12751] Avoid heap allocations in some cases of array concatenation

2022-12-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12751 Iain Buclaw changed: What|Removed |Added Priority|P1 |P4 --