jvmMain.it.unibo.tuprolog.serialize.TermSerialization.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serialize-core-jvm Show documentation
Show all versions of serialize-core-jvm Show documentation
JSON and YAML serialization support for logic terms and clauses
The newest version!
package it.unibo.tuprolog.serialize
actual fun termSerializer(mimeType: MimeType): TermSerializer {
return JvmTermSerializer(mimeType)
}
actual fun termDeserializer(mimeType: MimeType): TermDeserializer {
return JvmTermDeserializer(mimeType)
}
actual fun termObjectifier(): TermObjectifier {
return JvmTermObjectifier()
}
actual fun termDeobjectifier(): TermDeobjectifier {
return JvmTermDeobjectifier()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy