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

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