All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.github.mustafaozhan.scopemob.OptionalScope.kt Maven / Gradle / Ivy

The newest version!
/*
 Copyright (c) 2020 Mustafa Ozhan. All rights reserved.
 */
package com.github.mustafaozhan.scopemob

inline fun  ensure(
    vararg elements: T?,
    closureSafe: () -> R
): R? =
    if (elements.all { it != null }) {
        closureSafe()
    } else {
        null
    }

inline fun  T?.justInCase(block: () -> Unit) {
    if (this == null) block()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy