Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for builtinIdToType (0.11 sec)

  1. src/encoding/gob/type.go

    )
    
    func idToType(id typeId) gobType {
    	if id < 0 || int(id) >= len(idToTypeSlice) {
    		return nil
    	}
    	return idToTypeSlice[id]
    }
    
    func builtinIdToType(id typeId) gobType {
    	if id < 0 || int(id) >= len(builtinIdToTypeSlice) {
    		return nil
    	}
    	return builtinIdToTypeSlice[id]
    }
    
    func setTypeId(typ gobType) {
    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