The process of enumerating values, for example from some collection.
Is there a problem with using IEnumerable<T> as a return type? FxCop complains about returning List<…
c# collections ienumerable enumerationI have two collections of strings: CollectionA is a StringCollection property of an object stored in the system, while CollectionB …
c# linq enumerationI want to do something like this: sealed abstract class Base(val myparam:String) case class Foo(override val myparam:…
class scala inheritance enumerationIn Java you could: public enum Enum { ONE { public String method() { return "1"; } }, TWO { public String method() { return "2"; } }, THREE { public String …
java scala enums enumerationAs far as I can tell, Scala has definitions for the Enumeration Value class for Value(Int), Value(String), and …
scala enumerationI just wanted to know if it is possible to iterate over a sealed trait in Scala? If not, why …
scala enumeration scala-macros sealedI'm quite new to C# so please bear with me. I'm a bit confused with the thread safety. When is …
c# arrays string thread-safety enumerationI would like to iterate through a CFDictionary (CFPropertyList) and get all values on a specific level. This would be …
ios macos enumeration core-foundationHow would I loop through all the values of a Windows Registry Key using the Python module _winreg. I have …
python windows registry enumeration winregI wonder why generic methods which return nothing void are (or can be) declared this way: public static <E&…
java generics methods return-value enumeration