← Back to context Comment by rcxdude 10 hours ago Which isn't very good for substrings due to the null-termination requirement. 1 comment rcxdude Reply groundzeros2015 11 minutes ago Struct Substring { char start, end };My point is ownership being transferred implicitly in a struct assignment is a complexity introduced by C++.In C the concern of allocating memory and using it is separate.String_view is attempt to add more separation. But C programmers were already there.
groundzeros2015 11 minutes ago Struct Substring { char start, end };My point is ownership being transferred implicitly in a struct assignment is a complexity introduced by C++.In C the concern of allocating memory and using it is separate.String_view is attempt to add more separation. But C programmers were already there.
Struct Substring { char start, end };
My point is ownership being transferred implicitly in a struct assignment is a complexity introduced by C++.
In C the concern of allocating memory and using it is separate.
String_view is attempt to add more separation. But C programmers were already there.