Farkhad Rakhimzhanov

Results 1 comments of Farkhad Rakhimzhanov

``` // easyjson.go package main import "fmt" // easyjson:json type ItemList []Item // easyjson:json type Item struct { Val int } func TestUnpack() { data := []byte(`[{"Val":1}, {"Val":2}]`) v :=...