0
votes
4answers
46 views
XSLT, sort and group by year-date
Hello
Regarding Umbraco XSLT version 1.
I have aprox. 150 news items in XML. Lets say like this (all is pseudocode until I get more familiar with this xml/xslt):
<news>
…
0
votes
4answers
44 views
for-each no results text
I have a for-each and when there is nothing output by it I would like to display some default text.
If I have...
<xsl:for-each select='xpath'> Some content for each matchin …
0
votes
4answers
74 views
How do I apply templates to each selected node in a for-each?
I know I'm missing something here. In the XSLT transformation below, the actual result doesn't match the desired result.
Inside the for-each, I want to apply the match="track" tem …
1
vote
1answer
25 views
How to nest xsl:for-each selec
HI!
My XML:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Edited by XMLSpy® -->
<Dokument>
<Skupina id="3">
<Naziv_skupine>RAZSTAVNI P …
0
votes
2answers
59 views
Xsl : how to know I went inside any of several for-each ?
I have several <for-each> which run the one after the other. I would like, at the end, to do something if I did not pass in any of them. For only one for-each, I can manage t …
5
votes
7answers
677 views
Is there a way to access an iteration-counter in Java’s for-each loop?
Is there a way in Java's for-each loop
for(String s : stringArray) {
doSomethingWith(s);
}
to find out how often the loop has already been processed?
Aside from using using t …
0
votes
1answer
30 views
Where is boost::lambda::ll?
Hi all,
I can't seem to find boost::lambda::ll for a nested ll::for_each() invocations in any header file in the boost_1_39_0 distribution. Could someone point me to the right d …
7
votes
7answers
792 views
Can one do a for each loop in java in reverse order?
I need to run through a List in reverse order using Java.
So where this does it forwards:
for(String string: stringList){
//...do something
}
Is there some way to iterate the …
1
vote
8answers
204 views
Inconsistent behavior on java’s for-each
Consider this code:
class Jm44 {
public static void main(String args[]){
int []arr = {1,2,3,4};
for ( int i : arr )
{
arr[i] = 0;
}
for …
2
votes
2answers
134 views
For-each inside another For-Each and access a attribute defined in the first loop using the value of the second
For-each of a collection of headers and find a certain attribute in another collection of Items. If I have something like:
<ROOT>
<Listings>
<Listing>
…
3
votes
6answers
202 views
Call member functions of members of elements of a container with for_each?
Confusing title, hopefully some code will clarify:
struct MyNestedType {
void func();
};
struct MyType {
MyNestedType* nested;
}
std::vector<MyType> vec;
// ... p …
1
vote
1answer
142 views
how do you execute a function on a List of objects using LINQ
I want to execute a function on all the objects within a List of objects using LINQ. I know i saw something similar on SO before but after several failed search attempts, i am post …
4
votes
4answers
411 views
Why is std::for_each a non-modifying sequence operation?
I just read in the C++ standard that std::for_each is a non-modifying sequence operation, along with find, search and so on. Does that mean that the function applied to each elemen …
1
vote
3answers
182 views
In C++ how can I use a template function as the 3rd parameter in std::for_each?
I am trying to use std::for_each to output the contents of vectors, which may contain different types. So I wrote a generic output function like so:
template<typename T> voi …
5
votes
6answers
329 views
Is there a parameter I can use in Java that works with all for-each loops?
Suppose I've got a method that accepts an array and processes each element in it using Java's built in for-each loop, like this:
public static void myFun(SomeClass[] arr) {
fo …
