Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MultiLineSignature3 (0.23 sec)

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

    }
    
    func MultiLineSignature0(
    a, b, c int,
    ) {}
    
    func MultiLineSignature1(
    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,
    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

    	a, b, c int,
    ) {
    }
    
    func MultiLineSignature1(
    	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,
    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