Skip to content

Commit

Permalink
test: add tests for 2d arrays of primitives
Browse files Browse the repository at this point in the history
  • Loading branch information
padamstx committed Mar 30, 2021
1 parent 13000a9 commit 3bb8065
Show file tree
Hide file tree
Showing 2 changed files with 371 additions and 12 deletions.
3 changes: 2 additions & 1 deletion v5/core/unmarshal_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,15 @@ const (
// - *<primitive-type>
// - **<primitive-type>
// - *[]<primitive-type>
// - *[][]<primitive-type>
// - *map[string]<primitive-type>
// - *map[string][]<primitive-type>
// - *[]map[string]<primitive-type>
// - *[]map[string][]<primitive-type>
//
// Where <primitive-type> could be any of the following:
// - string, bool, []byte, int64, float32, float64, strfmt.Date, strfmt.DateTime,
// strfmt.UUID, interface{}, or map[string]interface{}.
// strfmt.UUID, interface{} (any), or map[string]interface{} (any object).
//
// Example:
// type MyStruct struct {
Expand Down
Loading

0 comments on commit 3bb8065

Please sign in to comment.