1 Matching Annotations
- Dec 2022
-
127.0.0.1:3999 127.0.0.1:3999
-
The length of a slice is the number of elements it contains. ↳ The capacity of a slice is the number of elements in the underlying array, counting from the first element in the slice. ↳ The length and capacity of a slice s can be obtained using the expressions len(s) and cap(s).
len(slice []type) cap(slice []type)
Tags
Annotators
URL
-