createOrNull
@ExperimentalSince(version = KotoolsTypesVersion.V4_5_0)
Creates a NonZeroInt from the specified number, which may involve rounding or truncation, or returns null
if the number equals zero.
Calling from Kotlin
Here's an example of calling this function from Kotlin code:
val number: NonZeroInt? = NonZeroInt.createOrNull(23)
assertEquals(expected = "23", actual = "$number")
Content copied to clipboard
Calling from Java
Here's an example of calling this function from Java code:
final NonZeroInt number = NonZeroInt.Companion.createOrNull(23);
Assertions.assertNotNull(number);
Content copied to clipboard