From 6708ac0cf03a8e7fb61f5d2599fae0578cc9e85f Mon Sep 17 00:00:00 2001 From: MURAOKA Taro Date: Wed, 31 Jul 2024 00:04:55 +0900 Subject: [PATCH] add doc --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7bd1787..c042455 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ The package `inflater` provides several special `Inflater` types. * `None` - An Inflater that consumes all input and produces no output, like a black hole. * `Keep` - An Inflater that outputs the input as is. +* `Slice` - An Inflater that ignores input and outputs all elements of the slice. * `Map` - An Inflater that converts input with a function and outputs it. * `Filter` - An Inflater that judges and filters input with a function.