Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    func ManageStatus(in <-chan *Status, req <-chan Request,
    stat chan<- *TargetInfo,
    TargetHistorySize int) {
    }
    
    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) {}
    
    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

    func ManageStatus(in <-chan *Status, req <-chan Request,
    	stat chan<- *TargetInfo,
    	TargetHistorySize int) {
    }
    
    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) {
    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