Created
July 3, 2019 18:05
-
-
Save hotsphink/b3ec12ca20d94469d76cdbd30277fe63 to your computer and use it in GitHub Desktop.
mkgist-created gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ExtensibleString A -> "blahblah" | |
UndependedString B | |
.base -> A | |
.chars -> "hbl\0" (owned) | |
DependentString C | |
.base -> B | |
.chars -> "b" (from A') | |
---------------------------------------------------------------------- | |
ExtensibleString A' -> "(module xyz)" (owned) (in deDupSet) | |
ExtensibleString A' -> "(module xyz)" (from A') | |
DependentString C | |
.base -> A' | |
.chars -> "XXXXXXX" (from B) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment