Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 03_Destructuring Declarations.md #202

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fun main() {
1. Defines a data class.
2. Destructures an instance. Declared values are mapped to the instance fields.
3. Data class automatically defines the `component1()` and `component2()` methods that will be called during destructuring.
4. Use _underscore_ if you don't need one of the values, avoiding the compiler hint indicating an unused variable.
4. Use _underscore_ if you don't need one of the values, avoiding the compiler hint indicating an unused variable. The second property `email` is renamed to `emailAddress` without having to use additional syntax.

```run-kotlin
class Pair<K, V>(val first: K, val second: V) { // 1
Expand Down