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