InBetter ProgrammingbyJacob BartlettSwift Enums 🤝 Design SystemsImplement design systems with progressive disclosure — utilise the Swift type system for simple, customisable SwiftUI componentsMay 23, 20232
Full Stack DeveloperWe know Enumerations in Java but Have You used it as a Datatype?!Let’s learn about ENUMs and use them in code to better our application.Nov 242Nov 242
Josiah T MahachiUsing Powers of 2 to Store Flags in Entity FrameworkStoring binary data in powers of 2, commonly known as bitwise flags or flag-based enums, is an elegant way to represent multiple boolean…Dec 1Dec 1
InStackademicbyRaphael Carubbi Neto🔢 Strongly Typed Enum in C# — A Complete Guide 💪Enums in C# are widely used to represent a set of constant values, but they have limitations, such as the inability to attach behaviors or…Nov 101Nov 101
InBetter ProgrammingbyJacob BartlettSwift Enums 🤝 Design SystemsImplement design systems with progressive disclosure — utilise the Swift type system for simple, customisable SwiftUI componentsMay 23, 20232
Full Stack DeveloperWe know Enumerations in Java but Have You used it as a Datatype?!Let’s learn about ENUMs and use them in code to better our application.Nov 242
Josiah T MahachiUsing Powers of 2 to Store Flags in Entity FrameworkStoring binary data in powers of 2, commonly known as bitwise flags or flag-based enums, is an elegant way to represent multiple boolean…Dec 1
InStackademicbyRaphael Carubbi Neto🔢 Strongly Typed Enum in C# — A Complete Guide 💪Enums in C# are widely used to represent a set of constant values, but they have limitations, such as the inability to attach behaviors or…Nov 101
Meghanath AviligondaYou should know these 9 Typescript Enum typesEnums are one of the few features TypeScript has which is not a type-level extension of JavaScript.Nov 27
Sanya GubraniTypeScript Enums or Union Types: Which One Should You Use?When it comes to TypeScript, developers often find themselves debating whether to use enums or union types — both are great, but each has…Sep 14
VinotechEnum in JavaIn Java, an enum (short for “enumeration”) is a special data type that represents a group of constants (unchangeable variables). Enums are…Nov 25