Hello,
As per the documentation:
Ranges allow you to create a list of sequential values. These can be used as Lists since Range extends java.util.List.
Yet the followingdef a = 1..5
Collections.shuffle(a)
yields java.lang.UnsupportedOperationException
whereasdef b = [1,2,3,4,5]
Collections.shuffle(b)
Works quite fine.
Am i missing something?
Regards,
Omar