All public logs

From wikinotes

Combined display of all available logs of wikinotes. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 03:30, 25 June 2022 Will talk contribs created page Golang encoding/json (Created page with "= Deserializing = <blockquote> == Array to Array == <blockquote> </blockquote><!-- Array to Array --> == Object to Struct == <blockquote> <syntaxhighlight lang="go"> type User struct { id int Name string } func main() { var user User json.Unmarshal([]byte(`{"id": 123, "Name": "vaderd"}`), &user) fmt.Println(user.Name) } </syntaxhighlight> </blockquote><!-- Object to Struct --> </blockquote><!-- Deserializing -->")