Tagged Questions

3
votes
8answers
445 views

C++ source code comprehension tools

I'm starting work on a huge C++ codebase, and was wondering if someone could suggest good source code comprehension tools. I usually use doxygen but was curious to see if anythin …
1
vote
6answers
536 views

List comprehension python

What is the equivalent list comprehension in python of the following Common Lisp code: (loop for x = input then (if (evenp x) (/ x 2) …
1
vote
1answer
86 views

One liner to replicate lines coming from a file (Python)

I have a regular list comprehension to load all lines of a file in a list f = open('file') try: self._raw = [L.rstrip('\n') for L in f] finally: f.close() Now I'd like …
5
votes
9answers
730 views

How do I efficiently filter computed values within a Python list comprehension?

The Python list comprehension syntax makes it easy to filter values within a comprehension. For example: result = [x**2 for x in mylist if type(x) is int] Will return a list of …
1
vote
3answers
210 views

Comprehension for flattening a sequence of sequences?

If I have sequence of sequences (maybe a list of tuples) I can use itertools.chain() to flatten it. But sometimes I feel like I would rather write it as a comprehension. I just can …