From 92caabbb32e1524c27e00f95d7a2a007ee5b0c00 Mon Sep 17 00:00:00 2001 From: nathanmarz Date: Sat, 7 Oct 2017 14:39:49 -0400 Subject: [PATCH] add screencast link --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6666e2e..0e6b640 100644 --- a/README.md +++ b/README.md @@ -83,9 +83,10 @@ The latest release version of Specter is hosted on [Clojars](https://clojars.org - Introductory blog post: [Clojure's missing piece](http://nathanmarz.com/blog/clojures-missing-piece.html) - Presentation about Specter: [Specter: Powerful and Simple Data Structure Manipulation](https://www.youtube.com/watch?v=VTCy_DkAJGk) - Note that this presentation was given before Specter's inline compilation/caching system was developed. You no longer need to do anything special to get near-optimal performance. +- Screencast on Specter: [Understanding Specter](https://www.youtube.com/watch?v=rh5J4vacG98) - List of navigators with examples: [This wiki page](https://github.com/nathanmarz/specter/wiki/List-of-Navigators) provides a more comprehensive overview than the API docs about the behavior of specific navigators and includes many examples. - 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-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. - [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.