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

commonMain.it.unibo.tuprolog.solve.directives.ClausePartitionExtensions.kt Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package it.unibo.tuprolog.solve.directives

operator fun ClausePartition?.plus(other: ClausePartition?): ClausePartition? =
    when {
        this == null && other == null -> null
        this == null -> other
        other == null -> this
        else -> this + other
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy