Tag: types

Defining julia types using macros

When working with Julia, it is common to define custom types using macros. Macros allow us to generate code at compile-time, which can be very useful for creating efficient and specialized types.

Read More »