Golang
Is golang tuple possible? [SOLVED]
By design golang tuple is not possible but we can work around this by using interfaces and generics.
Golang Timing - RIGHT way to measure execution time in GO
We explained two methods to achieve golang timing to measure execution time of go code using time function
Golang string to uint8 type casting [SOLVED]
We can use strconv.Atoi, fmt.Sscan, and strconv.ParseInt functions for golang string to uint8 type casting.
[SOLVED] Define GO function with multiple types
We can either use an empty interface using interface{} or use generics to define golang function accept two types or multiple types as an input.
Golang Context Complete Tutorial with Examples
The golang context package is part of the standard library. It defines a Context struct type and three functions— withDeadline(), withCancel(), and …
