Skip to content
Snippets Groups Projects
BooleansPtr.go 154 B
Newer Older
  • Learn to ignore specific revisions
  • package conditional
    
    func BooleansPtr(
    	isTrue bool,
    	trueValue, falseValue *[]bool,
    ) *[]bool {
    	if isTrue {
    		return trueValue
    	}
    
    	return falseValue
    }