kandy
kandy copied to clipboard
implement data serialization in series
Currently, there is a need to enhance the data serialization mechanism in series. This enhancement will allow for the serialization of data types into their corresponding array types:
List<List<Number>>->Array<Array<Number>>List<List<String>>->Array<Array<String>>List<List<Boolean>>->Array<Array<Boolean>>List<List<Any>>->Array<Array<String>>List<Number>->Array<Number>List<String>->Array<String>List<Boolean>->Array<Boolean>List<Any>->Array<String>