|
|
|
|
|
by lifthrasiir
881 days ago
|
|
I'm not sure how it can be possible. In my experience the notion of three-part slices does exist in C but only implicitly. For example, size_t trim_end(const char *p, size_t len) {
while (len > 0) {
if (p[len - 1] != ' ') break;
--len;
}
return len;
}
Conceptually this function accepts a slice `(p, len, cap)` and returns a slice `(p, len2, cap)` where `len2 <= len` and the capacity never changes. But the actual argument doesn't have `cap`, and the return argument doesn't have `p`. Everything is implicit and it's typical for C programmers to fully document and follow such implicits. Go's slice operator can't come out of such implicit practices in my opinion.In comparison, your claim only makes sense when the following was somehow normal: struct slice { const char *p; size_t len, cap; };
struct slice trim_end(const struct slice *s) {
struct slice out = *s;
while (out.len > 0) {
if (out.p[out.len - 1] != ' ') break;
out = subslice(out, 0, out.len - 1);
}
return out;
}
Note that a hypothetical `subslice` function call maps perfectly to a Go code `out[0:len(out)-1]`, and my complaint will equally apply: there should be two clearly named variants of `subslice` that may or may not keep the capacity. But I hardly saw such construction in C. |
|
I'm saying that if you look at how arrays get used in C, you'll see that you're usually passing around extra numbers with them. So Go added syntax than encapsulates this. And it encapsulates the most general case (hence both a length and a capacity, even though most cases in C only use one number).
Instead of passing (char *, int) in C, you just pass (slice) in Go. And the Go slicing operator gives a nice syntax for selecting ranges of buffers.
But a Go slice is just a pointer to an array underneath, and I think it's best to always think about them that way. And then it's natural that mySlice[:2] would keep the same underlying capacity, and that future appends would mutate that capacity. Defaulting mySlice[:2] to mean mySlice[:2:2] seems less convenient overall to me (though prevents mistakes like in your original hi/lo example, but those come from not thinking of slices in terms of the underlying array).