- Cleaned up
This commit is contained in:
Tristan B. Velloza Kildaire 2024-05-02 15:03:49 +02:00
parent 818a7cad32
commit f71286e85c
1 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,8 @@ import std.datetime.stopwatch : StopWatch, AutoStart;
import core.thread : Thread;
import core.sync.condition : Condition;
import std.functional : toDelegate;
import core.exception : ArrayIndexError;
import core.exception : RangeError;
version(unittest)
{
@ -657,8 +659,7 @@ private bool isSector(S)()
return __traits(hasMember, S, "opIndex");
}
import core.exception : ArrayIndexError;
import core.exception : RangeError;
public struct View(T, SectorType = Sector!(T))
if(isSector!(SectorType)())