com.alibaba.fastjson2.writer.ObjectWriter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastjson2-kotlin Show documentation
Show all versions of fastjson2-kotlin Show documentation
kotlin integration for Fastjson2
The newest version!
package com.alibaba.fastjson2.writer
import com.alibaba.fastjson2.JSON
/**
* E.g.
* ```
* val writer = ...
* val status = writer.register()
* ```
* @receiver ObjectWriter<*>
* @return [Boolean]
* @since 2.0.3
*/
inline fun ObjectWriter<*>.register() =
JSON.register(T::class.java, this)