Inside a for-each-group statement in XSLT2 the focus changes to a set of representative elements, one from each group. This means that, for example, last() returns the number of groups (because that equals the number of representative elements, and hence the "size" of the focus). Position() returns (essentially) the group number because it is the position of the representative element for the group under discussion within the sequence of representative elements, etc.
My question is whether it is possible to reference the set of those representative elements in an Xpath2 statement. Something like current-group() except containing the set of all representative elements (one from each group) rather than the set of all elements from the current group.