Alex Bogovich
My content

Go slice

Structure

type slice struct {
    array unsafe.Pointer
    len int
    cap int
}

Source code

#go

@2022