From 4a589c3074c37cfe460c1fafdbefe725b655e4db Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Tue, 13 Feb 2018 09:09:38 -0500 Subject: [PATCH] add cheat sheet to readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c0ba66f..46005ec 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,7 @@ The latest release version of Specter is hosted on [Clojars](https://clojars.org - Core operations and defining new navigators: [This wiki page](https://github.com/nathanmarz/specter/wiki/List-of-Macros) provides a more comprehensive overview than the API docs of the core select/transform/etc. operations and the operations for defining new navigators. - [This wiki page](https://github.com/nathanmarz/specter/wiki/Using-Specter-Recursively) explains how to do precise and efficient recursive navigation with Specter. - [This wiki page](https://github.com/nathanmarz/specter/wiki/Using-Specter-With-Zippers) provides a comprehensive overview of how to use Specter's zipper navigators. Zippers are a much slower navigation method but can perform certain tasks that are not possible with Specter's regular navigators. Note that zippers are rarely needed. +- [Cheat Sheet](https://github.com/nathanmarz/specter/wiki/Cheat-Sheet) - [API docs](http://nathanmarz.github.io/specter/) - Performance guide: [This post](https://github.com/nathanmarz/specter/wiki/Specter's-inline-caching-implementation) provides an overview of how Specter achieves its performance.