Good to know. I never got into immutable collections because I presumed they would result in things being allocated all the time (and that that would be expensive).
Persistent data structures allow for the appearance of cloning (you have a new thing) but are much more efficient behind the scenes (you don't actually copy everything). So if you find yourself doing a lot of defensive cloning, then Mori or this library would probably be a lot faster for you.