Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MultiLineSignature4 (0.15 sec)

  1. src/go/printer/testdata/declarations.input

    a, b, c int,
    u, v, w float,
    ) {}
    
    func MultiLineSignature2(
    a, b,
    c int,
    ) {}
    
    func MultiLineSignature3(
    a, b,
    c int, u, v,
    w float,
    		x ...int) {}
    
    func MultiLineSignature4(
    a, b, c int,
    u, v,
    w float,
    		x ...int) {}
    
    func MultiLineSignature5(
    a, b, c int,
    u, v, w float,
    p, q,
    r string,
    		x ...int) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.golden

    	u, v, w float,
    ) {
    }
    
    func MultiLineSignature2(
    	a, b,
    	c int,
    ) {
    }
    
    func MultiLineSignature3(
    	a, b,
    	c int, u, v,
    	w float,
    	x ...int) {
    }
    
    func MultiLineSignature4(
    	a, b, c int,
    	u, v,
    	w float,
    	x ...int) {
    }
    
    func MultiLineSignature5(
    	a, b, c int,
    	u, v, w float,
    	p, q,
    	r string,
    	x ...int) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
Back to top