Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for idToTypeSlice (0.19 sec)

  1. src/encoding/gob/type.go

    	copy(builtinIdToTypeSlice[:], idToTypeSlice)
    
    	// Move the id space upwards to allow for growth in the predefined world
    	// without breaking existing files.
    	if nextId := len(idToTypeSlice); nextId > firstUserId {
    		panic(fmt.Sprintln("nextId too large:", nextId))
    	}
    	idToTypeSlice = idToTypeSlice[:firstUserId]
    	registerBasics()
    	wireTypeUserInfo = userType(wireTypeType)
    }
    
    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