Narek Karapetian
Results
2
issues of
Narek Karapetian
### **Describe your change:** 1. Current implementation of Insertion sort is not the classic one, which is described here - [wikipedia](https://en.wikipedia.org/wiki/Insertion_sort) 2. Add additional function `sentinelSort` which is the modification...
Example ```scala def json[A: Loggable](a: A) = TethysBuilder(a) @derive(loggable) final case class X(field: String) val result = json(List(X("value"))) ``` Expected: ```scala [{"field":"value"}] ``` Actual ```scala {} ``` I think this...