deserializeNotNull

@ExperimentalSerializationApi
fun <D, T : Any> ReadOnlyProperty<D, String?>.deserializeNotNull(format: StringFormat, serializer: DeserializationStrategy<T>): ReadOnlyProperty<D, T?>(source)
@ExperimentalSerializationApi
fun <D, T : Any> ReadOnlyProperty<D, ByteArray?>.deserializeNotNull(format: BinaryFormat, serializer: DeserializationStrategy<T>): ReadOnlyProperty<D, T?>(source)
@ExperimentalSerializationApi
inline fun <D, T : Any> ReadOnlyProperty<D, String?>.deserializeNotNull(format: StringFormat): ReadOnlyProperty<D, T?>(source)
@ExperimentalSerializationApi
inline fun <D, T : Any> ReadOnlyProperty<D, ByteArray?>.deserializeNotNull(format: BinaryFormat): ReadOnlyProperty<D, T?>(source)

Deserialize the read string if it is non-null.


@ExperimentalSerializationApi
fun <D, T : Any> ReadWriteProperty<D, String?>.deserializeNotNull(format: StringFormat, serializer: KSerializer<T>): ReadWriteProperty<D, T?>(source)
@ExperimentalSerializationApi
fun <D, T : Any> ReadWriteProperty<D, ByteArray?>.deserializeNotNull(format: BinaryFormat, serializer: KSerializer<T>): ReadWriteProperty<D, T?>(source)
@ExperimentalSerializationApi
inline fun <D, T : Any> ReadWriteProperty<D, String?>.deserializeNotNull(format: StringFormat): ReadWriteProperty<D, T?>(source)
@ExperimentalSerializationApi
inline fun <D, T : Any> ReadWriteProperty<D, ByteArray?>.deserializeNotNull(format: BinaryFormat): ReadWriteProperty<D, T?>(source)

Deserialize reads from and serialize writes to the delegate, if the values are non-null.