Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for EmptyResults (0.12 sec)

  1. test/func5.go

    	c := make(chan int)
    	go addc(1, 2, c)
    	three(<-c)
    	go fc(1, 2, c)
    	three(<-c)
    	go fnc()(1, 2, c)
    	three(<-c)
    	go func(a, b int, c chan int) { c <- a+b }(1, 2, c)
    	three(<-c)
    
    	emptyresults()
    	noresults()
    	nothing = emptyresults
    	nothing()
    	nothing = noresults
    	nothing()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 1.5K bytes
    - Viewed (0)
Back to top