About 46,000 results
Open links in new tab
  1. Enumeration - Wikipedia

    An enumeration is a complete, ordered listing of all the items in a collection. The term is commonly used in mathematics and computer science to refer to a listing of all of the elements of a set. The precise …

  2. ENUMERATION Definition & Meaning - Merriam-Webster

    May 16, 2026 · The meaning of ENUMERATION is the act or process of making or stating a list of things one after another; also : the list itself. How to use enumeration in a sentence.

  3. ENUMERATION | English meaning - Cambridge Dictionary

    ENUMERATION definition: 1. the act of naming things separately, one by one: 2. the act of naming things separately, one by…. Learn more.

  4. Enumeration (or enum) in C - GeeksforGeeks

    Apr 8, 2026 · In C, an enumeration (or enum) is a user-defined data type that contains a set of named integer constants. It is used to assign meaningful names to integer values, which makes a program …

  5. enum — Support for enumerations — Python 3.14.6 documentation

    An enumeration: is a set of symbolic names (members) bound to unique values can be iterated over to return its canonical (i.e. non-alias) members in definition order uses call syntax to return members by …

  6. Enumeration declaration - cppreference.com

    Enumeration declaration An enumeration is a distinct type whose value is restricted to a range of values (see below for details), which may include several explicitly named constants (" enumerators "). The …

  7. Enumerated type - Wikipedia

    In computer programming, an enumerated type (also called enumeration, enum, or factor in the R programming language, a condition-name in the COBOL programming language, a status variable in …

  8. ENUMERATION | definition in the Cambridge English Dictionary

    ENUMERATION meaning: 1. the act of naming things separately, one by one: 2. the act of naming things separately, one by…. Learn more.

  9. ENUMERATION Definition & Meaning | Dictionary.com

    ENUMERATION definition: an act of enumerating. See examples of enumeration used in a sentence.

  10. Enumeration (Java SE 21 & JDK 21) - Oracle

    An object that implements the Enumeration interface generates a series of elements, one at a time. Successive calls to the nextElement method return successive elements of the series. For example, …