You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With ability to parse lines into slice becomes next:
vardest []*MyStructure// dest len will be extended as much as needed to// parse all presented lines intoiferr:=hunkee.Parse(lines, dest); err!=nil {
fmt.Println(err)
}
The text was updated successfully, but these errors were encountered:
For now, we can't pass slice of pointers to struct to parse data to, instead of that we should pass one pointer to struct at itreration.
Current state:
With ability to parse lines into slice becomes next:
The text was updated successfully, but these errors were encountered: