Last updated: Mar 28, 2022

Types

Types mean different ways by which we represent our data. This section includes the types that are being offered by go and how we use them.
Structs in Go
This blog will discuss what structures are, how to declare them, the zero value of a struct, and the different ways of structure instantiation with examples in the Go programming language.
Structure Equality Concept in Go EASY
This blog mainly focuses on the Structure Equality Concept in Go. We will discuss the Structures in Golang and Structure equality in Go with proper implementation and explanation.
Nested Structure in Go
This blog mainly focuses on the Nested Structure in Go. We will discuss the Structures in Go and Nested structures in Go with proper implementation.
Anonymous Structure and Fields in Go
This blog mainly focuses on the Anonymous Structure and Fields in Go. We will discuss the Structures in Go, Anonymous structures in Go, and Anonymous Fields in Go.
Promoted fields in structure in Go
This blog gives an overview of the promoted fields in the Golang structure.
Promoted Methods in Structure in Go EASY
The reader will learn about the promoted method in structure in Go in this article.
Function as a Field in Golang Structure EASY
The reader will learn about the function as a Field in Golang Structure in this article.
Interface in Go
This blog will discuss what an interface is, how to create and implement it, and what is type assertion and type switch in the Go programming language with examples.
Polymorphism Using Interfaces in Go MEDIUM
The reader will learn about polymorphism using interfaces in Go in this article.
Embedding Interfaces in Go
The article will be including the definition example and usages of Interface embedding in golang.
Go Pointers & Methods
In this blog, we will learn about pointers and methods in Golang.
Double Pointer in Go EASY
In this article, we will discuss the double pointer in Go and how it can be helpful in understanding memory allocation.
Pointers to a Function in Go EASY
In this article, we will discuss the pointers to a function in Go and how it can help understand the memory allocation concept.
Returning Pointer from a Function in Go EASY
In this article, we will learn how we can use pointers and functions together in Goland and return a pointer from a function with the help of examples.
Pointer to an Array as Function Argument in Go EASY
In this article, we will learn how we can use pointers and functions together in Goland and return a pointer from a function with the help of examples.
Pointer to Struct in Go EASY
In this blog, we will discuss what are pointers and their different types in Go programming. Also, we will be focusing on Pointer to Struct in Golang and their advantages.
Comparing Pointers in Go EASY
In this blog, we will be comparing the different types of pointers using equal to and not equal to operators with examples.
Finding the Length of the Pointer in Go
In this article, we will look at how to find the length of the pointer in GO along with its example.
Go Reflect
In this blog, we will learn about Reflection in Golang.
Rune in Golang EASY
In this article, we will discuss rune in golang with encoding method, declaration, and important points to consider.