public Iterator(Sliced <T> slice) { this.slice = slice; index = 0u; }
public bool Equals(Sliced <T> other) => ptr == other.ptr && len == other.len && origin == other.origin;