gitlab.com/evatix-go/core@v1.3.55/issetter/GetSetUnset.go (about)

     1  package issetter
     2  
     3  func GetSetUnset(
     4  	isCondition bool,
     5  ) Value {
     6  	if isCondition {
     7  		return Set
     8  	}
     9  
    10  	return Unset
    11  }