Tagged Questions
The enumerate tag has no wiki summary.
34
votes
9answers
40k views
Objective-C: Reading a file line by line
What is the appropriate way of dealing with large text files in Objective-C? Let's say I need to read each line separately and want to treat each line as an NSString. What is the most efficient way of ...
22
votes
3answers
8k views
C# - how enumerate all classes with custom class attribute?
Question based on MSDN example: http://msdn.microsoft.com/en-us/library/aa288454(VS.71).aspx
Let's say we have some C# classes with HelpAttribute in standalone desktop application. Is it possible to ...
10
votes
3answers
405 views
enumerate()-ing a generator in Python
I'd like to know what happens when I pass the result of a generator function to python's enumerate(). Example:
def veryBigHello():
i = 0
while i < 10000000:
i += 1
yield ...
7
votes
6answers
318 views
pythonic way to associate list elements with their indices
I have a list of values and I want to put them in a dictionary that would map each value to it's index.
I can do it this way:
>>> t = (5,6,7)
>>> d = dict(zip(t, range(len(t))))
...
6
votes
1answer
188 views
Is there a Scala equivalent for the python enumerate?
I'd like the convienience of
for i, line in enumerate(open(sys.argv[1])):
print i, line
when doing the following in Scala
for (line <- Source.fromFile(args(0)).getLines()) {
println(line)
...
5
votes
4answers
708 views
How to iterate initialized enumerated types with Delphi 6 and avoid the “out of bounds” error?
I am using Delphi 6 Professional. I am interfacing with a DLL libraty that declares an enumberated type as follows:
TExtDllEnum = (ENUM1 = $0, ENUM2 = $1, ENUM3 = $2, ENUM4 = $4, ENUM5 = $8, ENUM6 = ...
5
votes
2answers
1k views
Latex - skip numbering in an enumerate environment
I would like to skip numbering in a Latex enumerate environment to generate lists as follows:
(1) Item 1..
(2) Item 2..
(5) Item 5..
(6) Item 6..
and so on.
The Latex code is auto-generated, so ...
5
votes
6answers
590 views
How can I keep track of (enumerate) all classes that implement an interface
I have a situation where I have an interface that defines how a certain class behaves in order to fill a certain role in my program, but at this point in time I'm not 100% sure how many classes I will ...
3
votes
3answers
97 views
Problem with enumerated type in Java
I am very new to Java-programming, and have some problems in getting an enumerated type to work. In my program I have declared the following static variables:
class Employee {
enum Gender {MALE, ...
3
votes
2answers
113 views
How would one List the Databases in a SQL Server, not by query, but by c# call?
From this:
Enumerate all running databases
One can list the servers on the network, but once one selects one of those servers, how does one then list the DB's in that server, by using a similar ...
3
votes
1answer
372 views
VB 6 How to make Custom Collection Class to support For Each
I've been placed on a project whose client front end is written in VB 6, ack! I'm trying to develop a custom collection class that supports the For...Each syntax. Is this possible in VB 6? Or am I ...
3
votes
1answer
493 views
Python: Unpacking an inner nested tuple/list while still getting its index number
I am familiar with using enumerate():
>>> seq_flat = ('A', 'B', 'C')
>>> for num, entry in enumerate(seq_flat):
print num, entry
0 A
1 B
2 C
I want to be able to do the ...
3
votes
2answers
256 views
Ruby get nth item from massive range
Suppose I have this range:
("aaaaa".."zzzzz")
How would I get the Nth item from the range without generating the entire thing before hand/each time?
2
votes
1answer
77 views
Enumerate registry subkeys in delphi
I'm attempting to install a driver on a client machine based on which version of MySQL is installed on the server and to do that I'd like to check the version on the server via registry key. That ...
2
votes
2answers
98 views
Printing numbered nested lists on separate lines using enumerate in python
I've come to some grief in trying to achieve the following though I suspect it has a simple fix that has temporarily leaked from my brain. I need to be able to to print a grid of variable dimensions ...
2
votes
1answer
38 views
Getting Blank Lists - No Idea Why?
I use this code:
from __future__ import division
from __future__ import print_function
in_file = open("s:/Personal Folders/Andy/Python Projects/People Cancelled/Analyze Authorize Truncated.csv")
...
2
votes
2answers
128 views
How can I enumerate an infinite sequence of integers in C# 4.0?
Is there a function in C# that returns an IEnumerator of the infinite sequence of integers [0, 1, 2, 3, 4, 5 ...]?
I'm currently doing
Enumerable.Range (0, 1000000000).Select (x => x * ...
2
votes
5answers
138 views
Enumerate items in a list so a user can select the numeric value
I'm trying to find the most straightforward way to enumerate items in a list so that a user will not be burdened to type a long file name on a command line. The function below shows a user all .tgz ...
2
votes
1answer
385 views
Enumerating files in an embedded resource directory
Is there a way, in WPF, to enumerate through all files within a specific embedded resource directory? That is, a directory of items all having a "Build Action" set to "Resource".
2
votes
3answers
5k views
Specifying a no-indent for a list, with LaTeX
I have the following:
This is just normal text...
\begin{enumerate}
\item First Item ?\\\\
This is the text of the first item
\item Second Item ?\\\\
This is the text of the second item
...
2
votes
1answer
744 views
python dict function on enumerate object
If I have an enumerate object x, why does doing the following:
dict(x)
clear all the items in the enumerate sequence?
2
votes
4answers
403 views
Is there a way of recover from an Exception in Directory.EnumerateFiles?
In .NET 4, there's this Directory.EnumerateFiles() method with recursion that seems handy.
However, if an Exception occurs within a recursion, how can I continue/recover from that and continuing ...
2
votes
3answers
3k views
Changing the numberings of nested lists in an Enumerate environment, in LaTeX
I want to produce the following in LaTeX:
1. Item
2. Item
3a. Item
3b. Item
4. Item
5. Item
Basically I have already tried using nested enumerate environments, but I have a problem ...
2
votes
3answers
614 views
Enumerating tables used in mysql query?
Is there any way to enumerate tables used in mysql query?
Lets say I have query :
SELECT * FROM db_people.people_facts pf
INNER JOIN db_system.connections sm ON sm.source_id = pf.object_id
INNER ...
1
vote
1answer
79 views
How does Enumerate work in MonoTouch?
In MonoTouch I need to process each object in an NSSet. My attempt, using Enumerate, is as follows:
public override void ReturnResults ( BarcodePickerController picker, NSSet results )
{
var n = ...
1
vote
1answer
94 views
Rhino does not enumerate 'arguments' to a function
I'm trying to use the 'arguments' variable available to a function in order to enumerate the arguments passed to a function, in Javascript, using :
for (var i in arguments){
...
}
This seems to ...
1
vote
1answer
373 views
Using buffered reader for large .csv files, Python
I'm trying to open large .csv files (16k lines+, ~15 columns) in a python script, and am having some issues.
I use the built in open() function to open the file, then declare a csv.DictReader using ...
1
vote
2answers
220 views
Does the enumerate() function count elements in advance?
To support indexing over a collection Python includes enumerate() function. It provides index over collection.
for index, item in enumerate(list):
# do domething
print index
In my case I ...
1
vote
2answers
244 views
How do I get the names of the columns returned by a WbemScripting query?
I have the following procedure to run a WMI query, and it works perfectly well.
procedure TFormMain.GetWMIOSInfo(const RemoteMachine, Username, Password: string);
var
FSWbemLocator: OLEVariant;
...
1
vote
1answer
208 views
Why does enumerating sessions give an extra on Windows 7?
If I enumerate sessions using LsaEnumerateLogonSessions() to give me a list of session LUIDs then LsaGetLogonSessionData() to get details of each session (as described on MSDN) then on Windows XP it ...
1
vote
1answer
335 views
enumerating child windows
A couple of weeks ago someone here helped me out with writing a class that enumerates all main windows.
Today I tried to modify that class in order to enumerate all child windows of a specific parent ...
1
vote
1answer
149 views
Enumerating pixel formats for adaptors and modes with OpenGL
I'm trying to code an OpenGL path for my 3D engine. The D3D path enumerates all device adaptors, all modes (by mode I mean bit depth, dimensions, available windowed, and refresh rate) for each ...
1
vote
3answers
228 views
Enumerating devices and display modes for OpenGL rendering
I'm currently writing an OpenGL renderer and am part-way through writing some classes for enumerating display adaptors, devices and modes for use in drop-down lists.
I'm using EnumDisplayDevices to ...
1
vote
1answer
110 views
Code sample for: Update<T>(sourceObject, targetObject, string[] exceptions)
I want a generic update method which copies all properties of sourceObject to targetObject but not methods mentioned in exceptions.
1
vote
3answers
72 views
How do I get same result without using enumerate?
I do not need char in this example, but I include it to get my desired results.
charlist = [strval[0:count+1] for count, char in enumerate(strval)]
How do I get the same result without using ...
1
vote
2answers
140 views
Any way to enumerate class members?
I have a class instance, and I want to enumerate its members.
How can this be done?
1
vote
3answers
368 views
Enumerate Dictionary Within ASP.NET Web Page
I have a ASP.NET (C#) web page in which I want to enumerate a dictionary in a code render block:
<% foreach (Dictionary<string, string> record in parsedData) { %>
<div>...Some ...
1
vote
2answers
125 views
pylint: Using possibly undefined loop variable 'n'
Pylint say
W: 6: Using possibly undefined loop variable 'n'
with this code:
iterator = (i*i for i in range(100) if i % 3 == 0)
for n, i in enumerate(iterator):
do_something(i)
print n
...
1
vote
2answers
586 views
Programmatically move registry keys
Does anyone know how I can programmaically move a registry from HKEY_LOCAL_MCAHINE to HKEY_CURRENT_USER?
I wrote a recursive function that uses RegEnumKeyEx and RegEnumValue, but it appears that ...
1
vote
1answer
653 views
How to enumerate all webs and data in a SharePoint site collection
What is the best way to enumerate all SPWebs in an SPSite and also to enumerate folders within document libraries within each of the SPWebs? (essentially I want to find out the urls of all SPWebs, and ...
1
vote
5answers
287 views
Program Control-Flow in Python
I have some data that I have stored in a list and if I print out the list I see the following:
.
.
.
007 A000000 Y
007 B000000 5
007 C010100 1
007 C020100 ACORN FUND
007 C030100 N
007 C010200 2
...
1
vote
6answers
2k views
Enumerate printers for a specific Terminal Server session
I am looking for a way to see what printers a specific user has mapped into his or her TS session.
How can I achieve this with WMI (via PowerShell) or VB-Script? Is there a built-in way I'm not aware ...
0
votes
2answers
45 views
How i can set the increasing of enumerate, that depends on condition?
I have got the following loop^
i = 0
for var in vars:
if var[ "ID" ] != 0 and var[ "ID" ] & 1:
print i, var[ "ID" ]
i += 1
Can I use enumerate for this loop instead ...
0
votes
3answers
59 views
Creating objects with different names in an array using for loop
I am using a for statement to enumerate all objects in the array. For each object in the array I want to make it so that it creates a different object each time so i can refer to different ones e.g. ...
0
votes
1answer
18 views
enumerating apache direcory versions using .net
Am trying to enumerate the file system, checking for apache versions installed in wamp. since the apache folder usually have the version numbers in the name something like.
My goal is first to look ...
0
votes
3answers
32 views
Numerate and echo array keys in PHP
In my php code, i'm collecting all validation error messages into one array called $errors. Is it possible to echo all array elements like that: "1) Error 1 2) Error 2 ... " and so on?
0
votes
1answer
59 views
Can VBA enumerate a COM object's methods or fields?
I have a COM object (built with C#.NET) I'm using in VBA (Excel) and it would be really nice enumerate the COM object's fields and reference them automatically. In .NET, this could be done with ...
0
votes
6answers
184 views
Error when using NSMutableSet
I get the error
* Terminating app due to uncaught exception 'NSGenericException', reason: '* Collection <__NSCFSet: 0x6b66390> was mutated while being enumerated.'
when adding an new ...
0
votes
2answers
103 views
C++/Win32 enumerate windows belonging to my process & close them
I have a Windows app that houses a web browser (Internet explorer) embedded in it. The app can be closed from another process by means of IPC. It works just fine except the situation when the embedded ...
0
votes
1answer
41 views
Objective-c enumerateUsingBlock Issue
I want to extract all objects that has prefix "be", but I get only the first object, not all from various indexes. "array" contains various objects, and it contains objects like "be", "become", ...