Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestScanf (0.07 sec)

  1. src/fmt/scan_test.go

    		})
    	}
    }
    
    func TestScanln(t *testing.T) {
    	for _, r := range readers {
    		t.Run(r.name, func(t *testing.T) {
    			testScan(t, r.f, Fscanln)
    		})
    	}
    }
    
    func TestScanf(t *testing.T) {
    	for _, test := range scanfTests {
    		n, err := Sscanf(test.text, test.format, test.in)
    		if err != nil {
    			if test.out != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
Back to top