On Monday, 26 August 2019 at 09:54:30 UTC, Per Nordlöw wrote:
I have made some significant optimizations with regards to compilation performance athttps://github.com/nordlow/phobos-next/blob/master/src/soa.d
What is the preferred way to implement to support foreach over `x` in
struct S { int i; float f; }
auto x = SOA!S();
foreach (S; x[])
{
}
?
Implement `opSlice` that returns a SOA.Range type?
