© 2026 Hashnode
For many Rustaceans, zero-side type is an underappreciated notion. We'll see its lustre. A type of struct with no fields : The contemporary type system in Rust Many of the positive aspects of older languages have been incorporated into Rust, a con...

Value types and Reference types are two different ways data is handled in memory. Here’s a simple explanation with examples : Value Types: A value type stores the data directly in the memory allocated for the variable. When you assign a value to a va...

It is important to have Javadoc comments on our Java interfaces so developers know how the interface was intended to be implemented. Lets use OpenRewrite and an LLM to add Javadoc comments to our interfaces! GroqCloud For this blog we have used the G...

Introduction Welcome to the world of Go's structured data! In this guide, we'll delve into structs and custom data structures, the cornerstones of organized data in Go. Understanding how to create and use these structures is essential for building co...

Introduction Previously, we have written on Function Pointers, you can check it here, as it covers the fundamentals and explains from scratch what function pointers are. In this article, I will dwell more on using function pointers in the following c...
