From d86900f2ed2606b21969ac66ad28c8348681ce66 Mon Sep 17 00:00:00 2001 From: Manish Bansal Date: Fri, 4 Sep 2020 13:25:35 +0530 Subject: [PATCH] Update collections-methods.md Removed methods from the list as same have not been explained in the current document. --- _overviews/scala-book/collections-methods.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/_overviews/scala-book/collections-methods.md b/_overviews/scala-book/collections-methods.md index 527922b628..7bd8d9a15a 100644 --- a/_overviews/scala-book/collections-methods.md +++ b/_overviews/scala-book/collections-methods.md @@ -24,8 +24,7 @@ Because there are so many methods available to you, they won’t all be shown he - `tail` - `take`, `takeWhile` - `drop`, `dropWhile` -- `find` -- `reduce`, `fold` +- `reduce` The following methods will work on all of the collections “sequence” classes, including `Array`, `ArrayBuffer`, `List`, `Vector`, etc., but these examples will use a `List` unless otherwise specified.