Can you please explain to me what is Enumeration in computing.
For further actions, you may consider blocking this person and/or reporting abuse
Can you please explain to me what is Enumeration in computing.
For further actions, you may consider blocking this person and/or reporting abuse
Jakob Attkinson -
Sylvie Fiquet -
Pacharapol Withayasakpunt -
Adam Crockett -
Once suspended, mah3uz will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, mah3uz will be able to comment and publish posts again.
Once unpublished, all posts by mah3uz will become hidden and only accessible to themselves.
If mah3uz is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Mahfuz Shaikh.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag mah3uz:
Unflagging mah3uz will restore default visibility to their posts.
Top comments (4)
@nestedsoftware gave a solid answer about what an
enum
type is, but "enumeration" just means to make a list of things in sequence, or count them. You could enumerate a list - for instance, in Rust:This gives back an iterator that would look like this when collected:
The elements in this list have been "enumerated", or counted.
Thank you, now it’s making sense to me.
Are you referring to an ‘enum’ type? If so, it’s a type that allows you to define a finite sequence of named values for that type. Here’s an example from typescript:
Not all languages have enums. You can read more about it on Wikipedia: en.m.wikipedia.org/wiki/Enumerated...
Thank you