Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions core-kotlin-modules/core-kotlin-9/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
- [Find Least Common Multiple of Two Numbers in Kotlin](https://www.baeldung.com/kotlin/lcm)
- [Calculate Greatest Common Divisor in Kotlin](https://www.baeldung.com/kotlin/gcd)
- [Kotlin ?.let() vs if not null](https://www.baeldung.com/kotlin/let-vs-if-not-null)
- [Generate an MD5 Hash in Kotlin](https://www.baeldung.com/kotlin/md5-hash)
- [Is Kotlin Pass-By-Value or Pass-By-Reference?](https://www.baeldung.com/kotlin/parameters-pass-value-reference)
- [Util Classes in Kotlin](https://www.baeldung.com/kotlin/utility-class)
1 change: 1 addition & 0 deletions core-kotlin-modules/core-kotlin-arrays-2/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Relevant Articles
- [Get Subarray of an Array Between Given Positions in Kotlin](https://www.baeldung.com/kotlin/subarray-index-range)
- [Removing the First Element From an Array in Kotlin](https://www.baeldung.com/kotlin/array-remove-first-element)
- [Iterate Through an Array in Reverse Order in Kotlin](https://www.baeldung.com/kotlin/array-iterate-reverse)
- [Cyclically Rotate Array by One in Kotlin](https://www.baeldung.com/kotlin/array-cyclic-rotation)
2 changes: 2 additions & 0 deletions core-kotlin-modules/core-kotlin-collections-list-2/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
## Relevant Articles
- [How to Convert Integer List to IntArray in Kotlin](https://www.baeldung.com/kotlin/convert-integer-list-intarray)
- [Iterate Through a List and Add Items in Kotlin](https://www.baeldung.com/kotlin/list-iterate-add-items-dynamically)
- [How to Convert a Type-Erased List to an Array in Kotlin](https://www.baeldung.com/kotlin/type-erased-list-array-conversion)
1 change: 1 addition & 0 deletions core-kotlin-modules/core-kotlin-collections-set/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## Relevant Articles
- [Guide to Set and MutableSet in Kotlin](https://www.baeldung.com/kotlin/set-mutableset)
- [Clone a Set in Kotlin](https://www.baeldung.com/kotlin/clone-set)
- [How to Add List Contents Into a Set in Kotlin](https://www.baeldung.com/kotlin/set-add-list-elements)
1 change: 1 addition & 0 deletions core-kotlin-modules/core-kotlin-lang-4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ This module contains articles about core features in the Kotlin language.
- [Using Kotlin when() Clause for <, <=, >=, and == Comparisons](https://www.baeldung.com/kotlin/when-clause-comparisons)
- [Difference Between “it” and “this” Keywords in Kotlin](https://www.baeldung.com/kotlin/it-vs-this-keywords)
- [Data Objects in Kotlin](https://www.baeldung.com/kotlin/data-object-basics)
- [Working With Triple in Kotlin](https://www.baeldung.com/kotlin/triple-type)
- [[<-- prev]](/core-kotlin-modules/core-kotlin-lang-3)
1 change: 1 addition & 0 deletions kotlin-json/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ This module contains modules about JSON.
- [How to Parse JSON Without Data Class in Kotlin](https://www.baeldung.com/kotlin/parse-json-without-data-class)
- [Handling Multiple Names for JSON Field in Kotlin](https://www.baeldung.com/kotlin/json-field-several-names)
- [JSON String to Map](https://www.baeldung.com/kotlin/json-convert-map)
- [How to Extract Individual Values From a JSON String](https://www.baeldung.com/kotlin/json-extract-individual-values)
1 change: 1 addition & 0 deletions kotlin-ktor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ This module contains articles about Kotlin Libraries.
### Relevant articles:
- [An Introduction to Running GraphQL in Kotlin and Ktor](https://www.baeldung.com/kotlin/graphql-ktor)
- [Creating a Web Application With Ktor and Thymeleaf](https://www.baeldung.com/kotlin/ktor-thymeleaf-web-application)
- [A Look at the Ktor Client](https://www.baeldung.com/kotlin/ktor-client)
2 changes: 2 additions & 0 deletions kotlin-lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@

- [SAM Conversions in Kotlin](https://www.baeldung.com/kotlin/sam-conversions)
- [Lambdas with Receivers in Kotlin](https://www.baeldung.com/kotlin/lambda-receiver)
- [Using return Inside a Lambda in Kotlin](https://www.baeldung.com/kotlin/return-inside-a-lambda)
- [Using Function as Argument With Default Value in Kotlin](https://www.baeldung.com/kotlin/function-argument-default-value)
1 change: 1 addition & 0 deletions kotlin-math-2/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
## Relevant Articles
- [Fibonacci Series in Kotlin](https://www.baeldung.com/kotlin/fibonacci-series)
- [Find Average of All Items in a List in Kotlin](https://www.baeldung.com/kotlin/list-mean-value)
- [How to Calculate Standard Deviation in Kotlin](https://www.baeldung.com/kotlin/standard-deviation)
1 change: 1 addition & 0 deletions kotlin-patterns/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
### Relevant Articles:
- [The Observer Pattern in Kotlin](https://www.baeldung.com/kotlin/observer-pattern)
- [Mediator Pattern in Kotlin](https://www.baeldung.com/kotlin/mediator)
- [Strategy Design Pattern in Kotlin](https://www.baeldung.com/kotlin/strategy-design-pattern)