On Tuesday, 17 August 2021 at 12:26:36 UTC, jfondren wrote:
On Tuesday, 17 August 2021 at 12:21:31 UTC, Ferhat Kurtulmuş wrote:
[...]

This one's not in std.traits:

```d
import std.range : ElementType;

struct Point { int x, y; }

unittest {
    Point[] points;
    assert(is(ElementType!(typeof(points)) == Point));
}
```

Hey, thank you again but, I don't want an instance of Point[] I need:

alias T = Point[];

alias ElementOfPointSlice = .... // element type of T

Reply via email to