assertNotNullNoInline<T extends Any, R> function
- @JvmName("assertNotNull")
- @Deprecated('Provided for binary compatibility')
- T? actual, {
- String? message,
- R block(
- T
Asserts that the actual value is not null,
with an optional message and a function block to process the not-null value.
Implementation
@JvmName("assertNotNull")
@Deprecated('Provided for binary compatibility')
Unit assertNotNullNoInline<T extends Any, R>(
T? actual, {
String? message,
R Function(T)? block,
}) {
return asserter.assertNotNull(message, actual);
}