Tagged Questions
2
votes
4answers
267 views
Can I use Perl's map with an array slice?
I'm just trying to shorten a line of code that assigns HTML::Element->as_trimmed_text from an array of HTML::Elements to some variables - pretty standard stuff like:
my ($var1, var2) = ...
1
vote
1answer
40 views
Array subscript operator for pointer map
I have a struct with a std::map of pointers inside it. I'm trying to do the following:
template <class T>
struct Foo
{
std::map<std::string, T*> f;
T& operator[](std::string ...
1
vote
1answer
96 views
Referencing the ith element of each list in a 2d list
Take a 2d list.
I want to make a new list with only the ith element from each list.
What is the best way to do this?
I have:
map(lambda x: x[i], l)
Here is an example
>>> i = 0
...