From 3123d8919fad59fa0d70c234bd9ae52e8aec008d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesper=20Sandstr=C3=B6m?= Date: Sat, 28 Mar 2020 10:41:56 +0100 Subject: [PATCH] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b4befa7..a18fb88 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,7 @@ Note: If your `enum` has cases with no associated values, your enum will need to No enum? No problem. The following types of matchers are supported too: ```swift +let count: Int = ... Switcher(count) // If your type is equatable, you can match against values directly with `.just` .just(2) { _ in Text("Double trouble.") }