Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

92
votes
17answers
57k views

C# String enums

I have the following enumeration: public enum AuthenticationMethod { FORMS = 1, WINDOWSAUTHENTICATION = 2, SINGLESIGNON = 3 } The problem however is that I need the word "FORMS" when I ...
14
votes
1answer
413 views

Comparision of enumerator vs. iteratee package

Currently, there two popular choices which implement the iteratee pattern: The enumerator package and the iteratee package. What are their relative benefits? Is one better than the other, or does ...
13
votes
4answers
13k views

How can a formcollection be enumerated in ASP.NET MVC?

How can I enumerate through all the key/values of a FormCollection (system.web.mvc) in ASP.NET MVC?
9
votes
1answer
135 views

Composing Enumeratees in Enumerator

Disclaimer: this was asked recently on the haskell-cafe list. My apologies to anyone bothered by the double post. All of the iteratee-implementing packages that I know of (e.g. iteratee, iterIO, and ...
9
votes
5answers
460 views

Better way to implement filtered enumerator on TList<TMyObject>

Using Delphi 2010, let's say I've got a class declared like this: TMyList = TList<TMyObject> For this list Delphi kindly provides us with an enumerator, so we can write this: var L:TMyList; ...
7
votes
2answers
218 views

How to create a custom enumerator for a class derived from TDictionary?

I have defined a collection derived from TDictionary, and need to define a custom enumerator that apply an additional filter. I'm stuck as I can't access the TDictionary FItems array (it is private) ...
7
votes
2answers
759 views

Ruby generators vs Python generators

I've been researching the similarities/differences between Ruby and Python generators (known as Enumerators in Ruby), and so far as i can tell they're pretty much equivalent. However one difference ...
7
votes
9answers
484 views

Get next N elements from enumerable

Context: C# 3.0, .Net 3.5 Suppose I have a method that generates random numbers (forever): private static IEnumerable<int> RandomNumberGenerator() { while (true) yield return ...
7
votes
7answers
4k views

escaping the .each { } iteration early in Ruby

code: c = 0 items.each { |i| puts i.to_s # if c > 9 escape the each iteration early - and do not repeat c++ } I want to grab the first 10 items then leave the "each" ...
7
votes
3answers
2k views

Best way to convert a non-generic collection to generic collection

What is the best way to convert a non-generic collection to a generic collection? Is there a way to LINQ it? I have the following code. public class NonGenericCollection:CollectionBase { public ...
6
votes
3answers
134 views

Ruby: Manipulate Iterators?

I'm having teething problems with Ruby, with regards to creating single-direction, lazily-evaluated, potentially-infinite iterators. Basically, I'm trying to use Ruby like I'd use Haskell lists and, ...
6
votes
7answers
2k views

How to iterate over two arrays at once?

I have two arrays built while parsing a text file. The first contains the column names, the second contains the values from the current row. I need to iterate over both lists at once to build a map. ...
5
votes
2answers
64 views

Passing a list's enumerator to a function

It looks like passing a list's enumerator to a function "byval" is quite different than passing it "byref". Essentially, regular "byval" passing will NOT change the caller's "enumerator.Current ...
5
votes
3answers
224 views

c# - how to create an array from an enumerator

In C#, what's the most elegant way to create an array of objects, from an enumerator of objects? e.g. in this case I have an enumerator that can return byte's, so I want to convert this to byte[]. ...
4
votes
3answers
221 views

C# How to make a recursive version of GetEnumerator()

Can somebody give me advice on how to create a recursive version of GetEnumerator()? The well-known Towers of Hanoi problem may serve as an example that is comparable to the actual problem I have. A ...
4
votes
1answer
49 views

Why does Enumerator.new require a “yielder” object?

Consider a simple Enumerator like this: natural_numbers = Enumerator.new do |yielder| number = 1 loop do yielder.yield number number += 1 end end My question is: Why does ruby require ...
4
votes
2answers
99 views

How to create an ever-retrying Enumerator

I'm using John Millikin's enumerator package and am trying to create something roughly equivalent to Data.Enumerator.Binary.enumHandle, except it connects the socket itself, then tries to enumerate ...
4
votes
1answer
478 views

Haskell enumerator: analog to iteratees `enumWith` operator?

Earlier today I wrote a small test app for iteratees that composed an iteratee for writing progress with an iteratee for actually copying data. I wound up with values like these: -- NOTE: this ...
4
votes
5answers
943 views

Next key in C# Dictionary

How to get an Enumerator to an item in a -Sorted- dictionary using key? Note:GetEnumerator() gets an Enumerator to first element.. But I need to get an Enumerator to the element with a given key in ...
4
votes
10answers
382 views

.net enumeration first and last

is there a way in .NET (or some sort of standard extension methods) to ask questions of an enumeration? For example is the current item the first or last item in the enumeration: string s = ""; ...
3
votes
2answers
75 views

Possible multiple enumeration of IEnumerable warning by using .GetType()

I get the ReSharper warning "Possible multiple enumeration of IEnumerable" with following code: public void Mymethod(IEnumerable<int> entities) { var enumerator = entities.GetEnumerator(); ...
3
votes
4answers
84 views

Interface implementations and return types

The List<T> class implements the IEnumerable<T> interface. It has a method GetEnumerator that returns a List<T>.Enumerator. I have a class as below, which gives a compile error ...
3
votes
2answers
131 views

Type signature in a where clause

I've written a function similar to Data.Enumerator.List.map that makes an Iteratee compatible with an Enumerator that feeds a different Stream type. import Data.Enumerator test :: Monad m => (ao ...
3
votes
5answers
168 views

Ruby - Compare two Enumerators elegantly

I've got two long streams of numbers coming from two different sources (binary data) in Ruby (1.9.2). The two sources are encapsulated in the form of two Enumerators. I want to check that the two ...
3
votes
1answer
74 views

Disposing of arguments for an iterator block

Allright, here it goes a good piece of bad code: public class Log : CachingProxyList<Event> { public static Log FromFile(String fullPath) { using (FileStream fs = new ...
3
votes
2answers
205 views

Delphi custom enumerator gives strange errors

When creating a custom enumerator for string parsing I see some strange error messages. When using record It gives the following error: E2010 Incompatible types: 'TSplitStringEnumerator' and ...
3
votes
2answers
230 views

Ruby Enumerator - Why Finish with Exception?

Iterating a block in Ruby is simple enough - it finishes cleanly and proceeds on to the rest of the code. Iterating with an Enumerator, on the other hand, is a bit more confusing. If you call :each ...
3
votes
11answers
259 views

Enumerator problem, Any way to avoid two loops?

I have a third party api, which has a class that returns an enumerator for different items in the class. I need to remove an item in that enumerator, so I cannot use "for each". Only option I can ...
3
votes
4answers
459 views

Synchronized IEnumerator<T>

I'm putting together a custom SynchronizedCollection<T> class so that I can have a synchronized Observable collection for my WPF application. The synchronization is provided via a ...
2
votes
3answers
48 views

What do you exactly mean by HashMap's iterator is fail-fast and HashTable's enumerator isn't?

I was looking up the difference between the two classes and this point came up in a lot of the answers with this blog being the source: ...
2
votes
2answers
81 views

How to implement an enumerator in Ruby?

For example: a = [1,2,3,4,5] a.delete_if { |x| x > 3 } is equivalent to: a = [1,2,3,4,5] a.delete_if.each.each.each.each { |x| x > 3 } I know a.delete_if returns an enumerator. But how ...
2
votes
1answer
112 views

How to create custom iterator for Range

I'd like to create a subclass of Range in order to specify a step size other than 1 so I can do things like: >> a = RangeWithStepSize.new(-1, 2, 0.5).each {|x| puts(x)} -1.0 -0.5 0.0 0.5 1.0 ...
2
votes
1answer
216 views

Filtering / branching enumeratee

I am using enumerator-0.4.10, and I need to distribute processing of different parts of the incoming stream to different iteratees (I am parsing a huge XML file, and different sub-trees have different ...
2
votes
1answer
232 views

Haskell enumerators, odd errors

I'm trying to figure out how enumerators work, and therefore testing the enumerator library. I have a snippet which compiles on my desktop computer, but complains about No instance for MonadIO. Am I ...
2
votes
4answers
490 views

How do you design an enumerator that returns (theoretically) an infinite amount of items?

I'm writing code that looks similar to this: public IEnumerable<T> Unfold<T>(this T seed) { while (true) { yield return [next (T)object in custom sequence]; } } ...
1
vote
2answers
50 views

What is Enumerator object? (Created with String#gsub)

I have an attributes array as follows, attributes = ["test, 2011", "photo", "198.1 x 198.1 cm", "Photo: Manu PK Full Screen"] When i do this, artist = attributes[-1].gsub("Photo:") p artist i ...
1
vote
6answers
53 views

How to enumerate through list with the first “index” reported as 1? (Python 2.4)

I need my counter to start at 1. Right now I have for(counter, file) in enumerate(files): counter += 1 //do stuff with file and counter But there must be a better way, in Python v2.4
1
vote
3answers
75 views

How to improve this piece of code

I am running an online handbag store where handbags can be of four colors - black, brown, orange and red. I have notice that black handbags sell sooner than brown handbags and so forth. That means ...
1
vote
1answer
170 views

Using NSDirectoryEnumerator to model the filesystem

I'm trying to model the structure of the filesystem from a given starting path. The goal is to create a standard NSOutlineView of the filesystem from that path onwards. I've got a model object called ...
1
vote
2answers
154 views

How is Enumerator created with for in construction destroyed?

I have a collection derived from TCollection, implementing GetEnumerator so I can use it in a construction like for lElem in lCollection do The enumerator is derived from TObject, exactly like the ...
1
vote
1answer
93 views

How to advance multiple Enumerators, or “But what about FizzBuzzBoozz?”

This is a rather unorthodox way to do the classic FizzBuzz exercise, but it's just to illustrate the problem (and hey, it might be fast if you want to fizzbuzz to a billion). fizzer = ( Array.new( 2, ...
1
vote
1answer
61 views

What's Enumerator in an object?

This line of code confuses me: List<string> keys = new List<string>(); IDictionaryEnumerator ca = cache.GetEnumerator(); while (ca.MoveNext()) { keys.Add(ca.Key.ToString()); } What is ...
1
vote
3answers
709 views

Delphi: Using Enumerators to filter TList<T: class> by class type?

Okay, this might be confusing. What I'm trying to do is use an enumerator to only return certain items in a generic list based on class type. Given the following hierarchy: type TShapeClass = ...
1
vote
2answers
121 views

what is the pattern for modifying a collection in C#

What is the pattern (best practice) for such problem -- modifying elements (values) in collection? Conditions: size of the collection is not changed (no element is deleted or added) modification is ...
1
vote
3answers
182 views

copy n k/v pairs from Hashtable

I have a hashtable with n number of records. I need to copy out the records between x and y and iterate through them. How would I do this? Example: HT1.Count = 500; HT2 = HT1[0] - HT1[100]; ...
1
vote
1answer
153 views

for_each on a COM IEnumXxx interface?

I've got a COM object that returns an IEnumUnknown. Is there anything out there that'll turn it into an STL-style iterator? So that I can do something like this: IEnumUnkPtr pEnumUnk; // ...something ...
0
votes
0answers
60 views

Is read-only enumerator equivalent to read-only turing machine

I have the following theoretical question: A read-only enumerator is an enumerator that doesn't start necessary with an empty input tape. However it cannot write on its input tape, but it can on its ...
0
votes
1answer
33 views

Safari Extension Get Tab Position or Identifier

I am working on a safari extension in which I need to parse a particular array element to each instance of a tab that is created. I, however, need to be able to iterate through the array so that each ...
0
votes
3answers
72 views

Passing an unknown enum value into a function

This is an elaboration on this question: c# Enum Function Parameters I created a little sample application to introduce my question: UPDATE: This is a known difficulty on the C# programming ...
0
votes
3answers
103 views

C# - How to create updatable enumerator?

I'm a bit new to C# (coming from PHP) and I was a bit shocked that, by looping through a list I can't pass a reference to that varialbe, i.e. the following code is not valid: foreach (ref string var ...

1 2