Files
learngo/16-slices/exercises/23-limit-the-backing-array-sharing/solution/api/api.go
2019-08-22 20:04:52 +03:00

23 lines
500 B
Go

package api
var temps = []int{5, 10, 3, 25, 45, 80, 90}
// Read returns a slice of elements from the temps slice.
func Read(start, stop int) []int {
//
// The third index prevents the `main()` from
// overwriting the original temps slice's
// backing array. It limits the capacity of the
// returned slice. See the full slice expressions
// lecture for more details.
//
portion := temps[start:stop:stop]
return portion
}
// All returns the temps slice
func All() []int {
return temps
}