MPMohan Padagainmohanj.hashnode.dev·Feb 14, 2023 · 8 min readGolang StructsHey there! Let's learn structs in Golang. Struct Struct (aka structure) is used to create custom data types. In Golang we have primitive data types like int, float, complex, boolean, etc, and composite data types, such as arrays, maps, etc. But, what...00
MPMohan Padagainmohanj.hashnode.dev·Feb 9, 2023 · 4 min readGolang MapsHey there! Let's learn about map data structure in Golang. I already gave a brief introduction to map in this blog, Learn Go (Part-2). Map Maps are pretty useful data structures in every programming language, especially in scenarios where we need O(1...00
MPMohan Padagainmohanj.hashnode.dev·Jan 28, 2023 · 7 min readGolang SlicesHey there! Let's talk about slices in-depth. You may want to check out arrays first, if in case, here's the link to Golang Arrays. Slice In Golang, Slice is just an array data structure but with dynamic size i.e, it can grow its size when needed. At ...00
MPMohan Padagainmohanj.hashnode.dev·Jan 25, 2023 · 6 min readGolang ArraysHey there! This blog is all about arrays in Golang. I've already made an intro kind of thing where I explained a little bit about the arrays of Golang. Now we'll dig a bit deep into arrays. Array An array is a contiguous storage data structure, which...00
MPMohan Padagainmohanj.hashnode.dev·Jan 24, 2023 · 5 min readLearn Go (Part-2)Hey there! This blog is a continuation of the Learn Go series of my Go learnings. If you want to check out the part-1 then follow this link https://mohanj.hashnode.dev/learn-go Topics to be covered Composite types Array Slice Map Struct Note: T...00