[Issue 6345] A different kind of vector operation

2023-07-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6345 --- Comment #6 from Nick Treleaven --- A less drastic change would be this syntax, which also solves the ambiguities: float*[] CBuffers = buffers[#].ptr; m[#][1] = 1.0; c[#] = a[#] < b[#]; // issue #5636 Note: issue #5636 was fixed by simply

[Issue 6345] A different kind of vector operation

2023-07-05 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6345 Nick Treleaven changed: What|Removed |Added CC||n...@geany.org --- Comment #5 from Nick

[Issue 6345] A different kind of vector operation

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

[Issue 6345] A different kind of vector operation

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6345 Andrei Alexandrescu and...@erdani.com changed: What|Removed |Added Version|unspecified |D2 --

[Issue 6345] A different kind of vector operation

2011-07-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6345 Don clugd...@yahoo.com.au changed: What|Removed |Added CC||clugd...@yahoo.com.au ---

[Issue 6345] A different kind of vector operation

2011-07-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6345 --- Comment #4 from bearophile_h...@eml.cc 2011-07-28 05:15:59 PDT --- (In reply to comment #3) All these operations require the use of strided slices, which would be a huge amount of work to implement. Also, there are a plethora of corner

[Issue 6345] A different kind of vector operation

2011-07-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6345 --- Comment #2 from bearophile_h...@eml.cc 2011-07-27 13:56:06 PDT --- Another possible purpose. Given this matrix: auto M = new double[][](10, 20); This: M[][1] = 1.0; Means: foreach (row; p) row[1] = 1.0; This replaces some usages

[Issue 6345] A different kind of vector operation

2011-07-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6345 kenn...@gmail.com changed: What|Removed |Added CC||kenn...@gmail.com --- Comment #1