https://kotlinlang.org logo
#serialization
Title
# serialization
a

andylamax

12/08/2020, 5:55 AM
All over a sudden,
Person.serializer().list
can't be resovled. How do I get a list serializer in
kotlinx-serilialization-1.0.1
?
r

rnett

12/08/2020, 5:58 AM
ListSerializer(Person.serializer())
I think, or something like that. They moved from extensions to the standard generic style.
a

andylamax

12/09/2020, 12:16 AM
thanks a lot
2 Views