[18ebc28] | 1 | \chapter{Introduction} |
---|
| 2 | |
---|
[ccfbfd9] | 3 | All types in a programming language have a set of constants (symbols), and these constants represent values, \eg integer types have constants @-1@, @17@, @0xff@ representing whole numbers, floating-point types have constants @5.3@, @2.3E-5@, @0xff.ffp0@ representing real numbers, character types have constants @'a'@, @"abc\n"@, \mbox{\lstinline{u8"}\texttt{\guillemotleft{na\"{i}ve}\guillemotright}\lstinline{"}} representing (human readable) text, \etc. |
---|
| 4 | Constants can be overloaded among types, \eg @0@ is a null pointer for all pointer types, and the value zero for integer and floating-point types. |
---|
| 5 | (In \CFA, the constants @0@ and @1@ can be overloaded for any type.) |
---|
[46651fb] | 6 | A constant's symbolic name is dictated by language syntax related to types, \eg @5.@ (double), @5.0f@ (float), @5l@ (long double). |
---|
[ccfbfd9] | 7 | In general, the representation of a constant's value is \newterm{opaque}, so the internal representation can be chosen arbitrarily. |
---|
| 8 | In theory, there are an infinite set of constant names per type representing an infinite set of values. |
---|
| 9 | |
---|
[4c8f29ff] | 10 | It is common in mathematics, engineering, and computer science to alias new constants to existing constants so they have the same value, \eg $\pi$, $\tau$ (2$\pi$), $\phi$ (golden ratio), K(k), M, G, T for powers of 2\footnote{Overloaded with SI powers of 10.} often prefixing bits (b) or bytes (B), \eg Gb, MB, and in general situations, \eg specific times (noon, New Years), cities (Big Apple), flowers (Lily), \etc. |
---|
[ccfbfd9] | 11 | An alias can bind to another alias, which transitively binds it to the specified constant. |
---|
| 12 | Multiple aliases can represent the same value, \eg eighth note and quaver, giving synonyms. |
---|
| 13 | |
---|
| 14 | Many programming languages capture this important software-engineering capability through a mechanism called \newterm{constant} or \newterm{literal} naming, where a new constant is aliased to an existing constant. |
---|
[46651fb] | 15 | Its purpose is for readability: replacing a constant name that directly represents a value with a name that is more symbolic and meaningful in the context of the program. |
---|
[ccfbfd9] | 16 | Thereafter, changing the aliasing of the new constant to another constant automatically distributes the rebinding, preventing errors. |
---|
| 17 | % and only equality operations are available, \eg @O_RDONLY@, @O_WRONLY@, @O_CREAT@, @O_TRUNC@, @O_APPEND@. |
---|
| 18 | Because an aliased name is a constant, it cannot appear in a mutable context, \eg \mbox{$\pi$ \lstinline{= 42}} is meaningless, and a constant has no address, \ie it is an \newterm{rvalue}\footnote{ |
---|
[caf2cba] | 19 | The term rvalue defines an expression that can only appear on the right-hand side of an assignment expression.}. |
---|
[ccfbfd9] | 20 | In theory, there are an infinite set of possible aliasing, in practice, the number of aliasing per program is finite and small. |
---|
[caf2cba] | 21 | |
---|
[ccfbfd9] | 22 | Aliased constants can form an (ordered) set, \eg days of a week, months of a year, floors of a building (basement, ground, 1st), colours in a rainbow, \etc. |
---|
| 23 | In this case, the binding between a constant name and value can be implicit, where the values are chosen to support any set operations. |
---|
| 24 | Many programming languages capture the aliasing and ordering through a mechanism called an \newterm{enumeration}. |
---|
[caf2cba] | 25 | \begin{quote} |
---|
| 26 | enumerate (verb, transitive). |
---|
| 27 | To count, ascertain the number of; |
---|
[4da9142] | 28 | more usually, to mention (a number of things or persons) separately, as if for the purpose of counting; |
---|
| 29 | to specify as in a list or catalogue.~\cite{OEDenumerate} |
---|
[caf2cba] | 30 | \end{quote} |
---|
[ccfbfd9] | 31 | Within an enumeration set, the enumeration names (aliases) must be unique, and instances of an enumerated type are \emph{often} restricted to hold only these names. |
---|
| 32 | |
---|
| 33 | It is possible to enumerate among set names without having an ordering among the set values. |
---|
[48b76d03] | 34 | For example, the week, the weekdays, the weekend, and every second day of the week. |
---|
| 35 | \begin{cfa}[morekeywords={in}] |
---|
| 36 | for ( cursor in Mon, Tue, Wed, Thu, Fri, Sat, Sun } ... $\C[3.75in]{// week}$ |
---|
| 37 | for ( cursor in Mon, Tue, Wed, Thu, Fri } ... $\C{// weekday}$ |
---|
[4da9142] | 38 | for ( cursor in Sat, Sun } ... $\C{// weekend}$ |
---|
[48b76d03] | 39 | for ( cursor in Mon, Wed, Fri, Sun } ... $\C{// every second day of week}\CRT$ |
---|
| 40 | \end{cfa} |
---|
| 41 | A set can have a partial or total ordering, making it possible to compare set elements, \eg Monday is before Friday and Friday is after. |
---|
[314c9d8] | 42 | Ordering allows iterating among the enumeration set using relational operators and advancement, \eg: |
---|
[caf2cba] | 43 | \begin{cfa} |
---|
| 44 | for ( cursor = Monday; cursor @<=@ Friday; cursor = @succ@( cursor ) ) ... |
---|
| 45 | \end{cfa} |
---|
[ccfbfd9] | 46 | Here the values for the set names are logically \emph{generated} rather than listing a subset of names. |
---|
[4da9142] | 47 | |
---|
| 48 | Hence, the fundamental aspects of an enumeration are: |
---|
| 49 | \begin{enumerate} |
---|
| 50 | \item |
---|
[314c9d8] | 51 | \begin{sloppypar} |
---|
[ccfbfd9] | 52 | It provides a finite set of new constants, which are implicitly or explicitly assigned values that must be appropriate for any set operations. |
---|
| 53 | This aspect differentiates an enumeration from general types with an infinite set of constants. |
---|
[314c9d8] | 54 | \end{sloppypar} |
---|
[4da9142] | 55 | \item |
---|
[ccfbfd9] | 56 | The alias names are constants, which follows transitively from their binding to other constants. |
---|
[4da9142] | 57 | \item |
---|
[314c9d8] | 58 | Defines a type for generating instants (variables). |
---|
[4da9142] | 59 | \item |
---|
[ccfbfd9] | 60 | For safety, an enumeration instance should be restricted to hold only its constant names. |
---|
[4da9142] | 61 | \item |
---|
[ccfbfd9] | 62 | There is a mechanism for \emph{enumerating} over the enumeration names, where the ordering can be implicit from the type, explicitly listed, or generated arithmetically. |
---|
[4da9142] | 63 | \end{enumerate} |
---|
[48b76d03] | 64 | |
---|
[956299b] | 65 | |
---|
[48b76d03] | 66 | \section{Terminology} |
---|
[4da9142] | 67 | \label{s:Terminology} |
---|
[48b76d03] | 68 | |
---|
[46651fb] | 69 | The term \newterm{enumeration} defines a type with a set of new constants, and the term \newterm{enumerator} represents an arbitrary alias name \see{\VRef{s:CEnumeration} for the name derivations}. |
---|
| 70 | An enumerated type can have three fundamental properties, \newterm{label} (name), \newterm{order} (position), and \newterm{value} (payload). |
---|
[956299b] | 71 | \begin{cquote} |
---|
[48b76d03] | 72 | \sf\setlength{\tabcolsep}{3pt} |
---|
[caf2cba] | 73 | \begin{tabular}{rcccccccr} |
---|
| 74 | \it\color{red}enumeration & \multicolumn{8}{c}{\it\color{red}enumerators} \\ |
---|
[314c9d8] | 75 | $\downarrow$\hspace*{15pt} & \multicolumn{8}{c}{$\downarrow$} \\ |
---|
| 76 | @enum@ Week \{ & Mon, & Tue, & Wed, & Thu, & Fri, & Sat, & Sun {\color{red}= 42} & \}; \\ |
---|
[48b76d03] | 77 | \it\color{red}label & Mon & Tue & Wed & Thu & Fri & Sat & Sun & \\ |
---|
| 78 | \it\color{red}order & 0 & 1 & 2 & 3 & 4 & 5 & 6 & \\ |
---|
[314c9d8] | 79 | \it\color{red}value & 0 & 1 & 2 & 3 & 4 & 5 & {\color{red}42} & |
---|
[956299b] | 80 | \end{tabular} |
---|
| 81 | \end{cquote} |
---|
[4c8f29ff] | 82 | Here, the enumeration @Week@ defines the enumerator constants @Mon@, @Tue@, @Wed@, @Thu@, @Fri@, @Sat@, and @Sun@. |
---|
[caf2cba] | 83 | The implicit ordering implies the successor of @Tue@ is @Mon@ and the predecessor of @Tue@ is @Wed@, independent of any associated enumerator values. |
---|
[ccfbfd9] | 84 | The value is the implicitly/explicitly assigned constant to support any enumeration operations; |
---|
| 85 | the value may be hidden (opaque) or visible. |
---|
[48b76d03] | 86 | |
---|
[caf2cba] | 87 | Specifying complex ordering is possible: |
---|
| 88 | \begin{cfa} |
---|
| 89 | enum E1 { $\color{red}[\(_1\)$ {A, B}, $\color{blue}[\(_2\)$ C $\color{red}]\(_1\)$, {D, E} $\color{blue}]\(_2\)$ }; $\C{// overlapping square brackets}$ |
---|
| 90 | enum E2 { {A, {B, C} }, { {D, E}, F }; $\C{// nesting}$ |
---|
| 91 | \end{cfa} |
---|
| 92 | For @E1@, there is the partial ordering among @A@, @B@ and @C@, and @C@, @D@ and @E@, but not among @A@, @B@ and @D@, @E@. |
---|
| 93 | For @E2@, there is the total ordering @A@ $<$ @{B, C}@ $<$ @{D, E}@ $<$ @F@. |
---|
| 94 | Only flat total-ordering among enumerators is considered in this work. |
---|
[7d9a805b] | 95 | |
---|
| 96 | |
---|
[48b76d03] | 97 | \section{Motivation} |
---|
[caf2cba] | 98 | |
---|
[314c9d8] | 99 | Many programming languages provide an enumeration-like mechanism, which may or may not cover the previous five fundamental enumeration aspects. |
---|
| 100 | Hence, the term \emph{enumeration} can be confusing and misunderstood. |
---|
[ccfbfd9] | 101 | Furthermore, some languages conjoin the enumeration with other type features, making it difficult to tease apart which feature is being used. |
---|
[314c9d8] | 102 | This section discusses some language features that are sometimes called an enumeration but do not provide all enumeration aspects. |
---|
| 103 | |
---|
| 104 | |
---|
| 105 | \subsection{Aliasing} |
---|
[f632117] | 106 | \label{s:Aliasing} |
---|
[314c9d8] | 107 | |
---|
[ccfbfd9] | 108 | Some languages provide simple aliasing (renaming), \eg: |
---|
[caf2cba] | 109 | \begin{cfa} |
---|
[4da9142] | 110 | const Size = 20, Pi = 3.14159, Name = "Jane"; |
---|
[caf2cba] | 111 | \end{cfa} |
---|
[ccfbfd9] | 112 | The alias name is logically replaced in the program text by its matching constant. |
---|
[46651fb] | 113 | It is possible to compare aliases, if the constants allow it, \eg @Size < Pi@, whereas @Pi < Name@ might be disallowed depending on the language. |
---|
[caf2cba] | 114 | |
---|
[314c9d8] | 115 | Aliasing is not macro substitution, \eg @#define Size 20@, where a name is replaced by its value \emph{before} compilation, so the name is invisible to the programming language. |
---|
[ccfbfd9] | 116 | With aliasing, each new name is part of the language, and hence, participates fully, such as name overloading in the type system. |
---|
[314c9d8] | 117 | Aliasing is not an immutable variable, \eg: |
---|
| 118 | \begin{cfa} |
---|
| 119 | extern @const@ int Size = 20; |
---|
| 120 | extern void foo( @const@ int @&@ size ); |
---|
| 121 | foo( Size ); // take the address of (reference) Size |
---|
| 122 | \end{cfa} |
---|
[caaf424] | 123 | Taking the address of an immutable variable makes it an \newterm{lvalue}, which implies it has storage. |
---|
[314c9d8] | 124 | With separate compilation, it is necessary to choose one translation unit to perform the initialization. |
---|
| 125 | If aliasing does require storage, its address and initialization are opaque (compiler only), similar to \CC rvalue reference @&&@. |
---|
| 126 | |
---|
| 127 | Aliasing does provide readability and automatic resubstitution. |
---|
[ccfbfd9] | 128 | It also provides simple enumeration properties, but with effort. |
---|
[caf2cba] | 129 | \begin{cfa} |
---|
| 130 | const Mon = 1, Tue = 2, Wed = 3, Thu = 4, Fri = 5, Sat = 6, Sun = 7; |
---|
| 131 | \end{cfa} |
---|
[4da9142] | 132 | Any reordering of the enumerators requires manual renumbering. |
---|
[caf2cba] | 133 | \begin{cfa} |
---|
[46651fb] | 134 | const @Sun = 1@, Mon = 2, Tue = 3, Wed = 4, Thu = 5, Fri = 6, Sat = 7; |
---|
[caf2cba] | 135 | \end{cfa} |
---|
[314c9d8] | 136 | For these reasons, aliasing is sometimes called an enumeration. |
---|
| 137 | However, there is no type to create a type-checked instance or iterator cursor, so there is no ability for enumerating. |
---|
| 138 | Hence, there are multiple enumeration aspects not provided by aliasing, justifying a separate enumeration type in a programming language. |
---|
| 139 | |
---|
| 140 | |
---|
| 141 | \subsection{Algebraic Data Type} |
---|
[ec20ab9] | 142 | \label{s:AlgebraicDataType} |
---|
[4da9142] | 143 | |
---|
[314c9d8] | 144 | An algebraic data type (ADT)\footnote{ADT is overloaded with abstract data type.} is another language feature often linked with enumeration, where an ADT conjoins an arbitrary type, possibly a \lstinline[language=C++]{class} or @union@, and a named constructor. |
---|
| 145 | For example, in Haskell: |
---|
| 146 | \begin{haskell} |
---|
| 147 | data S = S { i::Int, d::Double } $\C{// structure}$ |
---|
| 148 | data @Foo@ = A Int | B Double | C S $\C{// ADT, composed of three types}$ |
---|
| 149 | foo = A 3; $\C{// type Foo is inferred}$ |
---|
| 150 | bar = B 3.5 |
---|
| 151 | baz = C S{ i = 7, d = 7.5 } |
---|
| 152 | \end{haskell} |
---|
| 153 | the ADT has three variants (constructors), @A@, @B@, @C@ with associated types @Int@, @Double@, and @S@. |
---|
| 154 | The constructors create an initialized value of the specific type that is bound to the immutable variables @foo@, @bar@, and @baz@. |
---|
[ccfbfd9] | 155 | Hence, the ADT @Foo@ is like a union containing values of the associated types, and a constructor name is used to intialize and access the value using dynamic pattern-matching. |
---|
[4da9142] | 156 | \begin{cquote} |
---|
[314c9d8] | 157 | \setlength{\tabcolsep}{15pt} |
---|
| 158 | \begin{tabular}{@{}ll@{}} |
---|
| 159 | \begin{haskell} |
---|
| 160 | prtfoo val = -- function |
---|
| 161 | -- pattern match on constructor |
---|
| 162 | case val of |
---|
| 163 | @A@ a -> print a |
---|
| 164 | @B@ b -> print b |
---|
| 165 | @C@ (S i d) -> do |
---|
| 166 | print i |
---|
| 167 | print d |
---|
| 168 | \end{haskell} |
---|
[4da9142] | 169 | & |
---|
[314c9d8] | 170 | \begin{haskell} |
---|
| 171 | main = do |
---|
| 172 | prtfoo foo |
---|
| 173 | prtfoo bar |
---|
| 174 | prtfoo baz |
---|
| 175 | 3 |
---|
| 176 | 3.5 |
---|
| 177 | 7 |
---|
| 178 | 7.5 |
---|
| 179 | \end{haskell} |
---|
[4da9142] | 180 | \end{tabular} |
---|
| 181 | \end{cquote} |
---|
[ccfbfd9] | 182 | For safety, most languages require all associated types to be listed or a default case with no field accesses. |
---|
[314c9d8] | 183 | |
---|
| 184 | A less frequent case is multiple constructors with the same type. |
---|
| 185 | \begin{haskell} |
---|
| 186 | data Bar = X Int | Y Int | Z Int; |
---|
| 187 | foo = X 3; |
---|
| 188 | bar = Y 3; |
---|
| 189 | baz = Z 5; |
---|
| 190 | \end{haskell} |
---|
| 191 | Here, the constructor name gives different meaning to the values in the common \lstinline[language=Haskell]{Int} type, \eg the value @3@ has different interpretations depending on the constructor name in the pattern matching. |
---|
| 192 | |
---|
[caaf424] | 193 | Note, the term \newterm{variant} is often associated with ADTs. |
---|
[314c9d8] | 194 | However, there are multiple languages with a @variant@ type that is not an ADT \see{Algol68~\cite{Algol68} or \CC \lstinline{variant}}. |
---|
[ccfbfd9] | 195 | In these languages, the variant is often a union using RTTI tags for discrimination, which cannot be used to simulate an enumeration. |
---|
[314c9d8] | 196 | Hence, in this work the term variant is not a synonym for ADT. |
---|
| 197 | |
---|
| 198 | % https://downloads.haskell.org/ghc/latest/docs/libraries/base-4.19.1.0-179c/GHC-Enum.html |
---|
| 199 | % https://hackage.haskell.org/package/base-4.19.1.0/docs/GHC-Enum.html |
---|
[48b76d03] | 200 | |
---|
[314c9d8] | 201 | The association between ADT and enumeration occurs if all the constructors have a unit (empty) type, \eg @struct unit {}@. |
---|
| 202 | Note, the unit type is not the same as \lstinline{void}, \eg: |
---|
[4da9142] | 203 | \begin{cfa} |
---|
[314c9d8] | 204 | void foo( void ); |
---|
[4c8f29ff] | 205 | struct unit {} u; $\C[1.5in]{// empty type}$ |
---|
[314c9d8] | 206 | unit bar( unit ); |
---|
[4c8f29ff] | 207 | foo( foo() ); $\C{// void argument does not match with void parameter}$ |
---|
| 208 | bar( bar( u ) ); $\C{// unit argument does match with unit parameter}\CRT$ |
---|
[4da9142] | 209 | \end{cfa} |
---|
[caf2cba] | 210 | |
---|
[314c9d8] | 211 | For example, in the Haskell ADT: |
---|
| 212 | \begin{haskell} |
---|
| 213 | data Week = Mon | Tue | Wed | Thu | Fri | Sat | Sun deriving(Enum, Eq, Show) |
---|
| 214 | \end{haskell} |
---|
[ccfbfd9] | 215 | the default type for each constructor is the unit type, and deriving from @Enum@ enforces no other associated types, @Eq@ allows equality comparison, and @Show@ is for printing. |
---|
[314c9d8] | 216 | The nullary constructors for the unit types are numbered left-to-right from $0$ to @maxBound@$- 1$, and provides enumerating operations @succ@, @pred@, @enumFrom@ @enumFromTo@. |
---|
| 217 | \VRef[Figure]{f:HaskellEnumeration} shows enumeration comparison and iterating (enumerating). |
---|
| 218 | |
---|
| 219 | \begin{figure} |
---|
[4da9142] | 220 | \begin{cquote} |
---|
[314c9d8] | 221 | \setlength{\tabcolsep}{15pt} |
---|
| 222 | \begin{tabular}{@{}ll@{}} |
---|
| 223 | \begin{haskell} |
---|
| 224 | day = Tue |
---|
| 225 | main = do |
---|
| 226 | if day == Tue then |
---|
| 227 | print day |
---|
| 228 | else |
---|
| 229 | putStr "not Tue" |
---|
| 230 | print (enumFrom Mon) -- week |
---|
| 231 | print (enumFromTo Mon Fri) -- weekday |
---|
| 232 | print (enumFromTo Sat Sun) -- weekend |
---|
| 233 | \end{haskell} |
---|
[4da9142] | 234 | & |
---|
[314c9d8] | 235 | \begin{haskell} |
---|
| 236 | Tue |
---|
| 237 | [Mon,Tue,Wed,Thu,Fri,Sat,Sun] |
---|
| 238 | [Mon,Tue,Wed,Thu,Fri] |
---|
| 239 | [Sat,Sun] |
---|
[caf2cba] | 240 | |
---|
| 241 | |
---|
[4da9142] | 242 | |
---|
[314c9d8] | 243 | |
---|
| 244 | |
---|
| 245 | \end{haskell} |
---|
| 246 | \end{tabular} |
---|
| 247 | \end{cquote} |
---|
| 248 | \caption{Haskell Enumeration} |
---|
| 249 | \label{f:HaskellEnumeration} |
---|
| 250 | \end{figure} |
---|
| 251 | |
---|
| 252 | The key observation is the dichotomy between an ADT and enumeration: the ADT uses the associated type resulting in a union-like data structure, and the enumeration does not use the associated type, and hence, is not a union. |
---|
[4c8f29ff] | 253 | While an enumeration is constructed using the ADT mechanism, it is so restricted it is not an ADT. |
---|
[314c9d8] | 254 | Furthermore, a general ADT cannot be an enumeration because the constructors generate different values making enumerating meaningless. |
---|
| 255 | While functional programming languages regularly repurpose the ADT type into an enumeration type, this process seems contrived and confusing. |
---|
| 256 | Hence, there is only a weak equivalence between an enumeration and ADT, justifying a separate enumeration type in a programming language. |
---|
[caf2cba] | 257 | |
---|
[f9da761] | 258 | |
---|
| 259 | \section{Contributions} |
---|
[7d9a805b] | 260 | |
---|
[314c9d8] | 261 | The goal of this work is to to extend the simple and unsafe enumeration type in the C programming-language into a complex and safe enumeration type in the \CFA programming-language, while maintaining backwards compatibility with C. |
---|
[caf2cba] | 262 | On the surface, enumerations seem like a simple type. |
---|
[41fb996] | 263 | However, when extended with advanced features, enumerations become complex for both the type system and the runtime implementation. |
---|
[48b76d03] | 264 | |
---|
[314c9d8] | 265 | The contribution of this work are: |
---|
[48b76d03] | 266 | \begin{enumerate} |
---|
| 267 | \item |
---|
| 268 | overloading |
---|
| 269 | \item |
---|
| 270 | scoping |
---|
| 271 | \item |
---|
| 272 | typing |
---|
| 273 | \item |
---|
[314c9d8] | 274 | subseting |
---|
[48b76d03] | 275 | \item |
---|
| 276 | inheritance |
---|
| 277 | \end{enumerate} |
---|
[4c8f29ff] | 278 | |
---|
| 279 | |
---|
| 280 | \begin{comment} |
---|
| 281 | Date: Wed, 1 May 2024 13:41:58 -0400 |
---|
| 282 | Subject: Re: Enumeration |
---|
| 283 | To: "Peter A. Buhr" <pabuhr@uwaterloo.ca> |
---|
| 284 | From: Gregor Richards <gregor.richards@uwaterloo.ca> |
---|
| 285 | |
---|
| 286 | I think I have only one comment and one philosophical quibble to make: |
---|
| 287 | |
---|
| 288 | Comment: I really can't agree with putting MB in the same category as the |
---|
| 289 | others. MB is both a quantity and a unit, and the suggestion that MB *is* one |
---|
| 290 | million evokes the rather disgusting comparison 1MB = 1000km. Unit types are |
---|
| 291 | not in the scope of this work. |
---|
| 292 | |
---|
| 293 | Philosophical quibble: Pi *is* 3.14159...etc. Monday is not 0; associating |
---|
| 294 | Monday with 0 is just a consequence of the language. The way this is written |
---|
| 295 | suggests that the intentional part is subordinate to the implementation detail, |
---|
| 296 | which seems backwards to me. Calling the number "primary" and the name |
---|
| 297 | "secondary" feels like you're looking out from inside of the compiler, instead |
---|
| 298 | of looking at the language from the outside. And, calling secondary values |
---|
| 299 | without visible primary values "opaque"-which yes, I realize is my own term |
---|
| 300 | ;)-suggests that you insist that the primary value is a part of the design, or |
---|
| 301 | at least mental model, of the program. Although as a practical matter there is |
---|
| 302 | some system value associated with the constructor/tag of an ADT, that value is |
---|
| 303 | not part of the mental model, and so calling it "primary" and calling the name |
---|
| 304 | "secondary" and "opaque" seems either (a) very odd or (b) very C-biased. Or |
---|
| 305 | both. |
---|
| 306 | |
---|
| 307 | With valediction, |
---|
| 308 | - Gregor Richards |
---|
| 309 | |
---|
| 310 | |
---|
| 311 | Date: Thu, 30 May 2024 23:15:23 -0400 |
---|
| 312 | Subject: Re: Meaning? |
---|
| 313 | To: "Peter A. Buhr" <pabuhr@uwaterloo.ca> |
---|
| 314 | CC: <ajbeach@uwaterloo.ca>, <j82liang@uwaterloo.ca> |
---|
| 315 | From: Gregor Richards <gregor.richards@uwaterloo.ca> |
---|
| 316 | |
---|
| 317 | I have to disagree with this being agreeing to disagree, since we agree |
---|
| 318 | here. My core point was that it doesn't matter whether you enumerate over the |
---|
| 319 | names or the values. This is a distinction without a difference in any case |
---|
| 320 | that matters. If any of the various ways of looking at it are actually |
---|
| 321 | different from each other, then that's because the enumeration has failed to be |
---|
| 322 | an enumeration in some other way, not because of the actual process of |
---|
| 323 | enumeration. Your flag enum is a 1-to-1 map of names and values, so whether you |
---|
| 324 | walk through names or walk through values is not an actual distinction. It |
---|
| 325 | could be distinct in the *order* that it walks through, but that doesn't |
---|
| 326 | actually matter, it's just a choice that has to be made. Walking through entire |
---|
| 327 | range of machine values, including ones that aren't part of the enumeration, |
---|
| 328 | would be bizarre in any case. |
---|
| 329 | |
---|
| 330 | Writing these out has crystallized some thoughts, albeit perhaps not in a way |
---|
| 331 | that's any help to y'all. An enumeration is a set of names; ideally an ordered |
---|
| 332 | set of names. The state of enumerations in programming languages muddies things |
---|
| 333 | because they often expose the machine value underlying those names, resulting |
---|
| 334 | in a possibly ordered set of names and a definitely ordered set of values. And, |
---|
| 335 | muddying things further, because those underlying values are exposed, enums are |
---|
| 336 | used in ways that *depend* on the underlying values being exposed, making that |
---|
| 337 | a part of the definition. But, an enumeration is conceptually just *one* set, |
---|
| 338 | not both. So much of the difficulty is that you're trying to find a way to make |
---|
| 339 | a concept that should be a single set agree with an implementation that's two |
---|
| 340 | sets. If those sets have a 1-to-1 mapping, then who cares, they're just |
---|
| 341 | aliases. It's the possibility of the map being surjective (having multiple |
---|
| 342 | names for the same underlying values) that breaks everything. Personally, I |
---|
| 343 | think that an enum with aliases isn't an enumeration anyway, so who cares about |
---|
| 344 | the rest; if you're not wearing the gourd as a shoe, then it's not an |
---|
| 345 | enumeration. |
---|
| 346 | |
---|
| 347 | With valediction, |
---|
| 348 | - Gregor Richards |
---|
| 349 | \end{comment} |
---|