From 168beaf1ae026315b2ab2146904618a154913447 Mon Sep 17 00:00:00 2001 From: Michael Fogleman Date: Wed, 20 Sep 2017 20:25:45 -0400 Subject: [PATCH] Write initial intro. --- Using-Specter-Recursively.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Using-Specter-Recursively.md b/Using-Specter-Recursively.md index e69de29..3b2bb61 100644 --- a/Using-Specter-Recursively.md +++ b/Using-Specter-Recursively.md @@ -0,0 +1 @@ +Specter is useful for navigating through nested data structures, and then returning (selecting) or transforming what it finds. Specter can also work its magic **recursively**. Many of Specter's most important and powerful use cases in your codebase will require you to use Specter's recursive features. However, just as recursion can be difficult to grok at first, using Specter recursively can be challenging. This guide is designed to help you feel at home using Specter recursively.