![JAR search and dependency download from the Maven repository](/logo.png)
io.github.danielTucano.extensions.booleanExtensions.kt Maven / Gradle / Ivy
package io.github.danielTucano.extensions
fun Boolean?.toPythonBooleanOrNone(): String = if (this == null) "None" else if (this) "True" else "False"
© 2015 - 2025 Weber Informatics LLC | Privacy Policy