ru.astrainteractive.astralibs.encoding.encoder.ObjectEncoderExt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core utilities for spigot development
package ru.astrainteractive.astralibs.encoding.encoder
import ru.astrainteractive.astralibs.encoding.model.EncodedObject
object ObjectEncoderExt {
inline fun ObjectEncoder.encodeList(objects: List): EncodedObject.Base64 {
return toBase64(objects)
}
inline fun ObjectEncoder.decodeList(encoded: EncodedObject.Base64): List {
return fromBase64(encoded) ?: emptyList()
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy