diff --git a/Specter's-inline-caching-implementation.md b/Specter's-inline-caching-implementation.md index 064a1e9..5b6b2dc 100644 --- a/Specter's-inline-caching-implementation.md +++ b/Specter's-inline-caching-implementation.md @@ -6,7 +6,7 @@ The rewrite greatly simplifies the implementation (codebase is 20% smaller) whil - Paths can now contain dynamic vars and special forms, e.g. `[*dynamic-nav* (if some-condition? (keypath a) ALL)]`. These paths still undergo inline compilation and caching and will run with great performance. - Performance with dynamic parameters is greatly improved. A path like `[(keypath a) (keypath b) (keypath c)]` runs more than 40% faster. -- Writing navigators or higher-order navigators is much simpler now. +- Writing navigators or higher-order navigators is much simpler now. If you want to write a regular Clojure function that returns an anonymous navigator, you can now do that without sacrificing performance. ## Old inline caching implementation