Adds another integer to this one and returns the value if no overflow occurred.
impl W32 {
fn checked_add(self, other: u32) -> Option<W32>
}| Name | Description |
|---|---|
| other | The integer that will be added to this one. |
Returns the sum if no overflow occurred, None otherwise.