Darren Duncan wrote:

>     $bag1 >>-<< 1;         # Bag(2,7,[1,Seq(8,2)],7)
>     $bag2 >>-<< (1,1,1,1); # probably the same
>     $bag3 >>-<< (1,1,2,1); # ?
>  
>

Bag's won't .does(Array) or .does(Coll[Seq,...]), so that hyperoperator
won't work - if anything it would try to add the (1,1,1,1) list to all
of the elements of the bag. You'd need to put the bag in something that
does imply ordering first.

This applies to any unordered collection, bags or sets.

Sam.

Reply via email to