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

extensions.booleanExtensions.kt Maven / Gradle / Ivy

package extensions

fun Boolean?.toPythonBooleanOrNone(): String = if (this == null) "None" else if (this) "True" else "False"




© 2015 - 2025 Weber Informatics LLC | Privacy Policy