Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 21 of 21 for str1 (0.03 sec)

  1. src/internal/fmtsort/sort_test.go

    // problematic types such as pointers. Note that it only does special handling
    // for the troublesome types used in the test cases; it is not a general
    // printer.
    func sprintKey(key reflect.Value) string {
    	switch str := key.Type().String(); str {
    	case "*int":
    		ptr := key.Interface().(*int)
    		for i := range ints {
    			if ptr == &ints[i] {
    				return fmt.Sprintf("PTR%d", i)
    			}
    		}
    		return "PTR???"
    	case "unsafe.Pointer":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top