I did some testing.

Given:
a = characters("abcdefghi")

b = retain(9)

c = {
  retain(3)
  deleteCharacters("def")
  retain(3)
}

Then:
c . inv(c) = {
  retain(3)
  deleteCharacters("def")
  characters("def")
  retain(3)
}

b . c . inv(c) = {
  retain(3)
  deleteCharacters("def")
  characters("def")
  retain(3)
}

a . c. inv(c) = characters("abcdefghi")

This seems like a limit in the Composer's ability to normalize the result.

-Tad

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Wave 
Protocol" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/wave-protocol?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to