github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/optional/int16.go (about)

     1  package optional
     2  
     3  type Int16 struct {
     4  	isSet bool
     5  	value int16
     6  }
     7  
     8  func NewInt16(value int16) Int16 {
     9  	return Int16{
    10  		true,
    11  		value,
    12  	}
    13  }
    14  
    15  // EmptyInt16 returns a new Int16 that does not have a value set.
    16  func EmptyInt16() Int16 {
    17  	return Int16{
    18  		false,
    19  		0,
    20  	}
    21  }
    22  
    23  func (i Int16) IsSet() bool {
    24  	return i.isSet
    25  }
    26  
    27  func (i Int16) Value() int16 {
    28  	return i.value
    29  }
    30  
    31  func (i Int16) Default(defaultValue int16) int16 {
    32  	if i.isSet {
    33  		return i.value
    34  	}
    35  	return defaultValue
    36  }