kandy icon indicating copy to clipboard operation
kandy copied to clipboard

implement data serialization in series

Open devcrocod opened this issue 2 years ago • 0 comments

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>

devcrocod avatar May 22 '23 11:05 devcrocod