BLOG

Latest Articles

Is golang tuple possible? [SOLVED]

By design golang tuple is not possible but we can work around this by using interfaces and generics.

By tuannguyen · 4 min read · GOLANG Solutions

Check if Key Exists in GO Map [6 Proven Methods]

We will explore following methods to check if key exists in map in golang. terate over map elements and look out for the key, Using index expression, Perform a …

By tuannguyen · 12 min read · GOLANG Solutions