Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for lookupTypeInfo (0.16 sec)

  1. src/encoding/gob/type.go

    		rt = ut.user
    	}
    	if info := lookupTypeInfo(rt); info != nil {
    		return info, nil
    	}
    	return buildTypeInfo(ut, rt)
    }
    
    // buildTypeInfo constructs the type information for the type
    // and stores it in the type info map.
    func buildTypeInfo(ut *userTypeInfo, rt reflect.Type) (*typeInfo, error) {
    	typeLock.Lock()
    	defer typeLock.Unlock()
    
    	if info := lookupTypeInfo(rt); info != nil {
    		return info, nil
    	}
    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