Go 17 Oct 202309 How To Use Streaming EncoderIntroduction to Stream EncodersApart from JSON Decoder, this JSON package can also support Encoder which is … 2 mntRead
Go 16 Oct 202308 How To Use Streaming DecoderIntroduction to Stream DecoderIn the previous article, we studied the JSON package by using conversion of JSON … 3 mntRead
Go 15 Oct 202307 How To Use MapsMap UseWhen we use JSON we sometimes encounter cases of dynamic JSON data, which means that the attributes … 2 mntRead
Go 14 Oct 202306 How to know JSON TagsIntroduction to JSON TagsBy default, if we create a struct and marshal it, it will be mapped according to the … 3 mntRead
Go 14 Oct 202305 How to know JSON ArrayIntroduction to JSON ArraysApart from JSON in Object form, usually in JSON we can also use the Array data … 3 mntRead
Go 13 Oct 202304 How to know Decode JSONIntroduction to JSON DecodingIn the previous article we learned to encode JSON and how to create a JSON … 3 mntRead
Go 12 Oct 202303 How to know JSON ObjectIntroduction to JSON ObjectsIn the previous article we studied encoding data such as string, number, boolean … 3 mntRead
Go 11 Oct 202302 Encode JSONIntroduction to JSON EncodingThe Golang language already provides functions for JSON data conversion needs, … 3 mntRead
Go 10 Oct 202301 Introduction PackageIntroduction to JSONJSON stands for JavaScript Object Notation which is a data format structure that looks … 2 mntRead
Go 08 Aug 2023Introduction and Implementation of Golang EmbedIntroduction to Embed PackagesSince Golang released version 1.16 there is a new feature called Embed. This … 4 mntRead
Go 24 Oct 2022Getting to Know Hashes Cryptography in GolangHashes & CryptographyThe hash function takes a set of data and reduces it to a smaller fixed size. Hash is … 2 mntRead
Go 24 Oct 2022Get to know Container List and Sort in GolangIn addition to arrays and maps, Go has several more collections available under the container package. … 3 mntRead