Tapan Avasthi
Results
5
issues of
Tapan Avasthi
### Steps to reproduce Sample Yaml: ``` - 123 - 456 - -23 ``` Sample code: ``` val parsedData: List = Yaml.Default.decodeListFromString(yamlStr) ``` Discrepancy: ``` Expected [123, 456, -23] Actual...
bug
### Steps to reproduce Below format works fine: ``` - ~ - null ``` Below format doesn't work: ``` [~, null] ``` In both cases, expected list is [null, null]...
bug