Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/sync/map.go

    	return e
    }
    
    func (m *Map) loadReadOnly() readOnly {
    	if p := m.read.Load(); p != nil {
    		return *p
    	}
    	return readOnly{}
    }
    
    // Load returns the value stored in the map for a key, or nil if no
    // value is present.
    // The ok result indicates whether value was found in the map.
    func (m *Map) Load(key any) (value any, ok bool) {
    	read := m.loadReadOnly()
    	e, ok := read.m[key]
    	if !ok && read.amended {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top