Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/runtime/map.go

    				if t.IndirectKey() {
    					*(*unsafe.Pointer)(dst.k) = k2 // copy pointer
    				} else {
    					typedmemmove(t.Key, dst.k, k) // copy elem
    				}
    				if t.IndirectElem() {
    					*(*unsafe.Pointer)(dst.e) = *(*unsafe.Pointer)(e)
    				} else {
    					typedmemmove(t.Elem, dst.e, e)
    				}
    				dst.i++
    				// These updates might push these pointers past the end of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top