View source code
							
							
						
								Display the source code in std/experimental/checkedint.d from which this
								page was generated on github.
							
						
							Report a bug
							
						
								If you spot a problem with this page, click here to create a
								Bugzilla issue.
							
						
							
								Improve this page
							
							
					
								Quickly fork, edit online, and submit a pull request for this page.
								Requires a signed-in GitHub account. This works well for small changes.
								If you'd like to make larger changes you may want to consider using
								local clone.
							
						Struct std.experimental.checkedint.Saturate
Hook that implements saturation, i.e. any arithmetic operation that would
overflow leaves the result at its extreme value (min or max depending on the
direction of the overflow).
						
				struct Saturate
				;
						
					
				Saturation is not sticky; if a value reaches its saturation value, another operation may take it back to normal range.
Methods
| Name | Description | 
|---|---|
| onLowerBound | Implements saturation for operators +=,-=,*=,/=,%=,^^=,&=,|=,^=,<<=,>>=,
    and>>>=. This hook is called if the result of the binary operation does
    not fit inLhswithout loss of information or a change in sign. | 
| onOverflow | Implements saturation for operators +,-(unary and binary),*,/,%,^^,&,|,^,<<,>>, and>>>. | 
| onUpperBound | Implements saturation for operators +=,-=,*=,/=,%=,^^=,&=,|=,^=,<<=,>>=,
    and>>>=. This hook is called if the result of the binary operation does
    not fit inLhswithout loss of information or a change in sign. | 
Example
auto x = checked!Saturate(intAuthors
License
					Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.