I am confused by the type []const u8, from the official document the statements regarding const is few. []const u8 is a slice, and is a ptr and length,but what's the diff from []u8. the length is const or the ptr is const or both. another point is each element of slice is const u8, but what is const u8,it is a type or else. I know what is const identifier and pointer, but confused by the type with const.
except the const in the slice type, any other usage?