Internals visualizer — retired in parot 0.3.0
This browser demo visualized low-level internal arrays for an input string. Those primitives were removed from the public WASM API in parot 0.3.0 — they leaked implementation details that have no stable shape guarantee across releases.
Use Index instead
For substring search, building an Index is simpler and
faster for any realistic workload:
- Pattern search →
idx.findAll(pattern) - Occurrence counts →
idx.count(pattern) - Context-aware results →
idx.search(pattern, context) - Distinct-substring count (UTF-16) →
top-level
unique_fragment_count(text)is still available - Longest common substring → top-level
longest_common_substring(a, b)is still available
Other demos still live here
- browser-search.html — full-text search over a large corpus using
Index - lcs.html — longest common substring between two texts
See Python API and JavaScript API for the full supported surface.