-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Kotlin has a reach standard library with the majority of different functions. | ||
Usually, if you need to do something with your collection, you don't need to implement it since this | ||
function already exists in the standard library. The functions can perform different things - | ||
from obvious ones like find or handle something to very complex ones like sort your collection or perform aggregation operations. | ||
Kotlin has a rich standard library with the lots of different functions. | ||
Usually, if you need to do something with your collection, you don't need to implement it, since the | ||
function already exists in the standard library. The functions can perform different things — | ||
from obvious ones, like finding or handling something, to very complex ones, like sorting your collection or performing aggregation operations. | ||
|
||
You can find all functions in the [official Kotlin documentation](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/). | ||
You can find all available functions in the [official Kotlin documentation](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/). | ||
|
||
In the rest of the steps in this project you will find tasks to implement something with the collections, | ||
in the **Hints** section you will find the built-in functions that can do it. Let's try to find the necessary functions in the official documentation and only then check your guess with the hints. | ||
The ability to search for something in the documentation is also a very important skill for programmers. | ||
In the rest of the steps in this project, you will find tasks to implement something on collections, and | ||
in the **Hints** section, you will find the built-in functions that can do it. First, try to find the necessary functions in the official documentation and only then check your guess with the hints. | ||
The ability to search for something in the documentation is also a very important skill for programmers. |