Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestMinMaxString (0.17 sec)

  1. src/runtime/minmax_test.go

    			}
    		}
    	}
    }
    
    func TestMinMaxInt(t *testing.T)    { testMinMax[int](t, -7, 0, 9) }
    func TestMinMaxUint8(t *testing.T)  { testMinMax[uint8](t, 0, 1, 2, 4, 7) }
    func TestMinMaxString(t *testing.T) { testMinMax[string](t, "a", "b", "c") }
    
    // TestMinMaxStringTies ensures that min(a, b) returns a when a == b.
    func TestMinMaxStringTies(t *testing.T) {
    	s := "xxx"
    	x := strings.Split(s, "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 01:41:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top