Enum MemOverlap
Result of a memory-overlap query. Matches NumPy's mem_overlap_t
(mem_overlap.h:15-21).
public enum MemOverlap
- Extension Methods
Fields
No = 0No solution exists — the arrays provably do not share memory.
Yes = 1A solution was found — the arrays share at least one byte.
TooHard = -1max_work exceeded — undecided, treat as "may share".
Overflow = -2Algorithm failed due to integer overflow — treat as "may share".
Error = -3Invalid input.