8000 Update views.md · fsky/scala.github.com@fba8224 · GitHub
[go: up one dir, main page]

Skip to content

Commit fba8224

Browse files
Harish HurchurnHarish Hurchurn
authored andcommitted
Update views.md
1 parent 72169d7 commit fba8224

File tree

8000

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

overviews/collections/views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ languages: [ja]
1111

1212
Collections have quite a few methods that construct new collections. Examples are `map`, `filter` or `++`. We call such methods transformers because they take at least one collection as their receiver object and produce another collection as their result.
1313

14-
There are two principal ways to implement transformers. One is _strict_, that is a new collection with all its elements constructed as a result of the transformer. The other is non-strict or _lazy_, that is one constructs only a proxy for the result collection, and its elements get constructed only as one demands them.
14+
There are two principal ways to implement transformers. One is _strict_, that is a new collection with all its is elements is constructed as a result of the transformer. The other is non-strict or _lazy_, that is one constructs only a proxy for the result collection, and its elements get constructed only as one demands them.
1515

1616
As an example of a non-strict transformer consider the following implementation of a lazy map operation:
1717

0 commit comments

Comments
 (0)
0