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

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