Enum & Sealed Classes

Enum is an abbreviation for 'enumerated'.  The overall concept is processing information where each value is one of a very limited set of values.  This is a look from the basics to the more advanced in how a dynamic language like python treats enum, through the advanced treatment available in kotlin. TLDR; Just read the… Continue reading Enum & Sealed Classes

Advertisement