Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newGobEncoderType (0.12 sec)

  1. src/encoding/gob/type.go

    func (a *arrayType) string() string { return a.safeString(make(map[typeId]bool)) }
    
    // GobEncoder type (something that implements the GobEncoder interface)
    type gobEncoderType struct {
    	CommonType
    }
    
    func newGobEncoderType(name string) *gobEncoderType {
    	g := &gobEncoderType{CommonType{Name: name}}
    	setTypeId(g)
    	return g
    }
    
    func (g *gobEncoderType) safeString(seen map[typeId]bool) string {
    	return g.Name
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top