MCPcopy Index your code
hub / github.com/go-python/gopy / Slice

Struct Slice

bind/types.go:201–210  ·  view source on GitHub ↗

Slice Slice collects information about a go slice.

Source from the content-addressed store, hash-verified

199
200// Slice collects information about a go slice.
201type Slice struct {
202 pkg *Package
203 sym *symbol
204 obj *types.TypeName
205
206 id string
207 doc string
208 meths []*Func
209 prots Protocol
210}
211
212func newSlice(p *Package, obj *types.TypeName) (*Slice, error) {
213 sym := p.syms.symtype(obj.Type())

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected