Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsCountFlag (0.16 sec)

  1. src/cmd/internal/objabi/flag.go

    		}
    		*c = count(n)
    	}
    	return nil
    }
    
    func (c *count) Get() interface{} {
    	return int(*c)
    }
    
    func (c *count) IsBoolFlag() bool {
    	return true
    }
    
    func (c *count) IsCountFlag() bool {
    	return true
    }
    
    type fn1 func(string)
    
    func (f fn1) Set(s string) error {
    	f(s)
    	return nil
    }
    
    func (f fn1) String() string { return "" }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top