commonMain.com.github.mustafaozhan.scopemob.EitherScope.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of submob-metadata Show documentation
Show all versions of submob-metadata Show documentation
Set of useful scope and Higher-order functions
The newest version!
/*
Copyright (c) 2020 Mustafa Ozhan. All rights reserved.
*/
package com.github.mustafaozhan.scopemob
inline fun T.either(
vararg method: T.(condition: T) -> Boolean
): T? =
if (this != null) {
if (method.any { it(this) }) {
this
} else {
null
}
} else {
null
}
inline fun T.eitherNot(
vararg method: T.(condition: T) -> Boolean
): T? =
if (this != null) {
if (!method.any { it(this) }) {
this
} else {
null
}
} else {
null
}