Add multitasking

This commit is contained in:
Alexander Nozik 2024-11-12 09:20:43 +03:00
parent 10d6d1e6c2
commit edb92aa1a1
4 changed files with 1983 additions and 1234 deletions

View File

@ -18,8 +18,8 @@
16. Стоит ли использовать scope функции везде, где это возможно. 16. Стоит ли использовать scope функции везде, где это возможно.
17. Чем отличается arrayListOf()` от `mutableListOf()`? 17. Чем отличается arrayListOf()` от `mutableListOf()`?
18. List в Kotlin всегда реализует List в Java при интеропе? 18. List в Kotlin всегда реализует List в Java при интеропе?
19. Можно ли сделать собствен карту get и set при помощи квадратных скобок? 19. Можно ли сделать собственную реализацию карты с get и set при помощи квадратных скобок?
20. В чем отличие forEach в стандартной библиотеке Котлин и Java? 20. В чем отличие forEach на карте в стандартной библиотеке Котлин и Java?
21. Как работают функции componentN? 21. Как работают функции componentN?
22. Почему в Котлин нет диапазонов для чисел с плавающей точкой? 22. Почему в Котлин нет диапазонов для чисел с плавающей точкой?
23. Какой оператор должен быть реализован типе для того, чтобы он стал делегатом? 23. Какой оператор должен быть реализован типе для того, чтобы он стал делегатом?

View File

@ -76,9 +76,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": "println(\"This is a plain string\")",
"println(\"This is a plain string\")"
],
"metadata": { "metadata": {
"datalore": { "datalore": {
"node_id": "FFW0GaV6uhemvZxlpnjpFL", "node_id": "FFW0GaV6uhemvZxlpnjpFL",
@ -140,9 +138,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": "println(\"This is a string with \\$\")",
"println(\"This is a string with \\$\")"
],
"metadata": { "metadata": {
"datalore": { "datalore": {
"node_id": "hm9iYlWj1B2S0469GtxDrf", "node_id": "hm9iYlWj1B2S0469GtxDrf",
@ -487,6 +483,20 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"fun doNothing(){\n",
" \n",
"}\n",
"\n",
"val a = doNothing()\n",
"a::class"
],
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "markdown", "cell_type": "markdown",
"source": [ "source": [
@ -554,8 +564,11 @@
" x * x + 2 * x + 1\n", " x * x + 2 * x + 1\n",
"}\n", "}\n",
"integrate(0.0, PI) { sin(it) }\n", "integrate(0.0, PI) { sin(it) }\n",
"// integrate(0.0, PI) //error\n",
"integrate(0.0, step = 0.02, to = PI) { sin(it) }\n", "integrate(0.0, step = 0.02, to = PI) { sin(it) }\n",
"//integrate(0.0, step = 0.02, PI) { sin(it) }" "//integrate(0.0, step = 0.02, PI) { sin(it) }\n",
"\n",
"integrate(0.0, step = 0.02, function = { sin(it) }, to = PI)"
], ],
"metadata": { "metadata": {
"datalore": { "datalore": {
@ -568,6 +581,25 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"fun functionWithParameters(){\n",
" println(\"without default\")\n",
"}\n",
"\n",
"//@JvmOverloads\n",
"@JvmName(\"functionWithDefaultParameters\")\n",
"fun functionWithParameters(a: Int = 2){\n",
" println(\"with default\")\n",
"}\n",
"\n",
"functionWithParameters()"
],
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "markdown", "cell_type": "markdown",
"source": [ "source": [
@ -644,13 +676,15 @@
" fun build() = BuildResult(str, int, optional)\n", " fun build() = BuildResult(str, int, optional)\n",
"}\n", "}\n",
"\n", "\n",
"fun doWithBuilder(defaultInt: Int, block: Builder.() -> Unit): BuildResult = \n", "fun BuildResult(defaultInt: Int, block: Builder.() -> Unit): BuildResult = \n",
" Builder(int = defaultInt).apply(block).build()\n", " Builder(int = defaultInt).apply(block).build()\n",
"\n", "\n",
"doWithBuilder(2){\n", "val res = BuildResult(2){\n",
" str = \"ff\"\n", " str = \"ff\"\n",
" optional = 1.0\n", " optional = 1.0\n",
"}" "}\n",
"\n",
"res"
], ],
"metadata": { "metadata": {
"datalore": { "datalore": {
@ -749,6 +783,31 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"fun interface Float64Function: (Double) -> Double {\n",
" override operator fun invoke(arg: Double): Double\n",
" \n",
" operator fun invoke(doubles: DoubleArray): DoubleArray = DoubleArray(doubles.size){ invoke( doubles[it]) }\n",
"}\n",
"\n",
"val sin = object : Float64Function{\n",
" override fun invoke(p1: Double): Double = sin(p1)\n",
"}\n",
"\n",
"val cos = Float64Function{ kotlin.math.cos(it) }\n",
"\n",
"val tg = Float64Function(::tan)\n",
"\n",
"sin(PI/2)\n",
"\n",
"sin(doubleArrayOf(0.0, PI/2))"
],
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "markdown", "cell_type": "markdown",
"source": [ "source": [
@ -775,6 +834,10 @@
"\n", "\n",
"interface Consumer<in T>{\n", "interface Consumer<in T>{\n",
" fun consume(value: T)\n", " fun consume(value: T)\n",
"}\n",
"\n",
"interface Doer<T>: Producer<T>, Consumer<T> {\n",
"\n",
"}" "}"
], ],
"metadata": { "metadata": {
@ -825,6 +888,13 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": "fun transformIf(flag: Boolean): Int = if (flag) 1 else 0 ",
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "markdown", "cell_type": "markdown",
"source": [ "source": [
@ -899,7 +969,7 @@
"cell_type": "code", "cell_type": "code",
"source": [ "source": [
"fun tryCatch() {\n", "fun tryCatch() {\n",
" val result = try {\n", " val result: Int = try {\n",
" 22\n", " 22\n",
" } catch (e: ArithmeticException) {\n", " } catch (e: ArithmeticException) {\n",
" throw IllegalStateException(e)\n", " throw IllegalStateException(e)\n",
@ -930,6 +1000,7 @@
" 4\n", " 4\n",
"}\n", "}\n",
"\n", "\n",
"println(res.exceptionOrNull())\n",
"(res.getOrNull() ?: 0) + 1" "(res.getOrNull() ?: 0) + 1"
], ],
"metadata": { "metadata": {
@ -957,7 +1028,7 @@
" runCatching {\n", " runCatching {\n",
" if (it % 2 == 0) error(\"Even: $it\") else it\n", " if (it % 2 == 0) error(\"Even: $it\") else it\n",
" }\n", " }\n",
"}.take(10).toList()" "}.take(10).toList().joinToString(separator = \"\\n\")"
], ],
"metadata": { "metadata": {
"datalore": { "datalore": {
@ -999,6 +1070,12 @@
" return found + 2\n", " return found + 2\n",
"}\n", "}\n",
"\n", "\n",
"//FIXME don't do that\n",
"fun dontDoThat() {\n",
" if (true) return\n",
" println(false)\n",
"}\n",
"\n",
"fun checkCondition(): Int {\n", "fun checkCondition(): Int {\n",
" fun conditionSatisfied() = false\n", " fun conditionSatisfied() = false\n",
"\n", "\n",
@ -1045,7 +1122,7 @@
"}\n", "}\n",
"\n", "\n",
"\n", "\n",
"data class DataClass(val a: Int, val b: Double) {\n", "data class DataClass(val a: Int, var b: Double /*, d: Double */) {\n",
" val c get() = b + 1\n", " val c get() = b + 1\n",
"}\n", "}\n",
"\n", "\n",
@ -1086,7 +1163,6 @@
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": [
"\n",
"/**\n", "/**\n",
" * Nullable truth.\n", " * Nullable truth.\n",
" */\n", " */\n",
@ -1122,6 +1198,27 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"import java.util.Optional\n",
"import kotlin.reflect.typeOf\n",
"\n",
"println(typeOf<Optional<Boolean>>() == typeOf<Optional<Optional<Boolean>>>())\n",
"\n",
"println( typeOf<Boolean?>() == typeOf<Boolean??>()) "
],
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "code",
"source": "mapOf<String,String>().get(\"f\")!!",
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "markdown", "cell_type": "markdown",
"source": [ "source": [
@ -1305,6 +1402,13 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": "",
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": [
@ -1323,6 +1427,26 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": "",
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "code",
"source": [
"val functionWithReciever: List<String>.(arg: Int) -> Unit = {arg->\n",
" println(get(arg))\n",
"}\n",
"\n",
"listOf(\"1\", \"2\", \"3\").functionWithReciever(1)"
],
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "markdown", "cell_type": "markdown",
"source": [ "source": [
@ -1458,7 +1582,7 @@
"// Using `with`\n", "// Using `with`\n",
"val res = with(AClass){\n", "val res = with(AClass){\n",
" // AClass type is the receiver in this scope\n", " // AClass type is the receiver in this scope\n",
" println(\"a = $a, b = $b, c = $c\")\n", " println(\"a = ${this.a}, b = $b, c = $c\")\n",
" /*return@with*/ \"some value\"\n", " /*return@with*/ \"some value\"\n",
"}\n", "}\n",
"\n", "\n",
@ -1475,17 +1599,36 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"object AContext{\n",
" fun AClass.abc() = a + b + c // warning additional concatenation\n",
"}\n",
"\n",
"fun printAbc(aClass: AClass) = with(AContext){\n",
" aClass.abc()\n",
"}"
],
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": [
"\n", "\n",
"//using `run`\n", "//using `run`\n",
"getAClass()?.run {\n", "getAClass()?.takeIf { it.a.isNotEmpty() }?.run {\n",
" // the same as above\n", " // the same as above\n",
" println(\"a = $a, b= $b, c = $c\")\n", " println(\"a = $a, b= $b, c = $c\")\n",
" 2\n", " 2\n",
"}\n", "}\n",
"\n", "\n",
"val runResult: Int = run {\n",
" \n",
"}\n",
"\n",
"//Using `let` to compose result. Not recommended using without a need\n", "//Using `let` to compose result. Not recommended using without a need\n",
"val letResult = getAClass()?.let { arg ->\n", "val letResult = getAClass()?.let { arg ->\n",
" arg.c + arg.a\n", " arg.c + arg.a\n",
@ -1502,6 +1645,16 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"//Don't do that\n",
"fun scopeAbuse(str: String?) = str.takeIf { it?.isNotEmpty() == true }?.let { it.substring(0..4) }?.let { it.matches(\".*\".toRegex())}"
],
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "markdown", "cell_type": "markdown",
"source": [ "source": [
@ -1615,12 +1768,13 @@
"/**\n", "/**\n",
" * This method creates a read-only list of strings. One should note that the type of the list is not specified\n", " * This method creates a read-only list of strings. One should note that the type of the list is not specified\n",
" */\n", " */\n",
"val list = listOf(\"a\", \"b\", \"c\")\n", "val list: List<String> = listOf(\"a\", \"b\", \"c\")\n",
"\n", "\n",
"println(list[0])\n", "println(list[0])\n",
"println(list.get(1))\n", "println(list.get(1))\n",
"//println(list.get(4))\n", "//println(list.get(4))\n",
"println(list.getOrNull(4) ?: \"nothing\")" "println(list.getOrNull(4) ?: \"nothing\")\n",
"list::class"
], ],
"metadata": { "metadata": {
"datalore": { "datalore": {
@ -1657,6 +1811,19 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"\n",
"//don't do that ever\n",
"fun doBadThingWithList(list: List<String>): List<String> = (list as MutableList<String>).apply { add(\"something\") }\n",
"\n",
"doBadThingWithList(listOf(\"a\", \"b\", \"c\"))"
],
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": [
@ -1673,6 +1840,29 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"val mutableList = mutableListOf(1,2,3)\n",
"\n",
"fun consumeList(list: List<Int>){\n",
" println(list.joinToString())\n",
"}\n",
"consumeList(mutableList)\n",
"mutableList.add(4)\n",
"consumeList(mutableList)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "code",
"source": "listOf(1,2) + listOf(3,4)",
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": [
@ -1691,6 +1881,17 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"val writableList = mutableListOf(\"a\", \"b\") // Warning!\n",
"writableList += setOf(\"c\")\n",
"writableList"
],
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": [
@ -1700,11 +1901,13 @@
" */\n", " */\n",
"val arrayList: ArrayList<String> = arrayListOf(\"a\", \"b\", \"c\")\n", "val arrayList: ArrayList<String> = arrayListOf(\"a\", \"b\", \"c\")\n",
"\n", "\n",
"//ArrayList<Int>()\n",
"\n",
"//Danger zone\n", "//Danger zone\n",
"\n", "//\n",
"val newList: List<String> = list + \"f\" + mutableList\n", "//val newList: List<String> = list + \"f\" + mutableList\n",
"\n", "//\n",
"println(newList)" "//println(newList)"
], ],
"metadata": { "metadata": {
"datalore": { "datalore": {
@ -1726,7 +1929,6 @@
"val lambdaList = List(3){ it.toString() }\n", "val lambdaList = List(3){ it.toString() }\n",
"println(lambdaList)\n", "println(lambdaList)\n",
"\n", "\n",
"\n",
"val builderList: List<Int> = buildList {\n", "val builderList: List<Int> = buildList {\n",
" add(2)\n", " add(2)\n",
" add(8)\n", " add(8)\n",
@ -1802,6 +2004,13 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": "",
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "markdown", "cell_type": "markdown",
"source": [ "source": [
@ -1826,6 +2035,7 @@
")\n", ")\n",
"\n", "\n",
"//The map could be accessed via indexing operation\n", "//The map could be accessed via indexing operation\n",
"println(map::class)\n",
"println(map[\"key\"])\n", "println(map[\"key\"])\n",
"map[\"key\"] = \"fff\"\n", "map[\"key\"] = \"fff\"\n",
"println(map[\"key\"])\n", "println(map[\"key\"])\n",
@ -1848,10 +2058,12 @@
"\n", "\n",
"//val entry: MutableMap.MutableEntry<String, String> = map.iterator().next()\n", "//val entry: MutableMap.MutableEntry<String, String> = map.iterator().next()\n",
"\n", "\n",
"//map.entries.first().component2()\n",
"\n",
"/**\n", "/**\n",
" * The destructuring declaration for maps and other objects that support `operator fun componentN`\n", " * The destructuring declaration for maps and other objects that support `operator fun componentN`\n",
" */\n", " */\n",
"for ((k, v) in map) {\n", "for ((k: String, v) in map) {\n",
"//val (k, v) = entry\n", "//val (k, v) = entry\n",
"// val k = entry.component1()\n", "// val k = entry.component1()\n",
"// val v = entry.component2()\n", "// val v = entry.component2()\n",
@ -1871,9 +2083,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": "map.forEach { (k, v) -> println(\"$k -> $v\")}",
"map.forEach { (k, v) -> println(\"$k -> $v\")}"
],
"metadata": { "metadata": {
"datalore": { "datalore": {
"node_id": "s1Q65aNWb9YNBZOgxmjotW", "node_id": "s1Q65aNWb9YNBZOgxmjotW",
@ -1940,6 +2150,11 @@
"\n", "\n",
" private val _list: MutableList<Int> = ArrayList<Int>()\n", " private val _list: MutableList<Int> = ArrayList<Int>()\n",
" val list: List<Int> get() = _list\n", " val list: List<Int> get() = _list\n",
" \n",
" fun add(int: Int){\n",
" require(int>0)\n",
" _list.add(int)\n",
" }\n",
"}\n", "}\n",
"\n", "\n",
"\n", "\n",
@ -1947,6 +2162,7 @@
"val obj = AClassWithList()\n", "val obj = AClassWithList()\n",
"\n", "\n",
"// obj.b = 10.0 //error\n", "// obj.b = 10.0 //error\n",
"obj.add(42)\n",
"obj.list.add(43)" "obj.list.add(43)"
], ],
"metadata": { "metadata": {
@ -1960,199 +2176,6 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"cell_type": "markdown",
"source": [
"## Contains operator and ranges"
],
"attachments": {},
"metadata": {
"datalore": {
"node_id": "GKoCVcgdnSYPjsNCAJIkBB",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"\n",
"val emailsList = emptyList<String>()\n",
"\n",
"// When used directly infix in operator checks if the element is contained in a collection\n",
"//using `operator fun contains`\n",
"\n",
"if (\"john@example.com\" in emailsList) {\n",
" println(\"is in list\")\n",
"}\n",
"\n",
"if (\"jane@example.com\" !in emailsList) {\n",
" println(\"not in list\")\n",
"}"
],
"metadata": {
"datalore": {
"node_id": "4mh1Lg6g8OWEIC1Qjgp9tN",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"source": [
"\n",
"\n",
"class DateRange(val start: Instant, val end: Instant)\n",
"\n",
"operator fun DateRange.contains(value: Instant): Boolean = value > start && value < end\n",
"\n",
"\n",
"println(Instant.now() in DateRange(Instant.EPOCH, Instant.MAX))"
],
"metadata": {
"datalore": {
"node_id": "1N4A00CAksn2nVg57DRKnp",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"source": [
"\n",
"// Another (different) use of `in` is iteration over range or collection using\n",
"// using `operator fun iterator`\n",
"\n",
"for (i in 1..100) {\n",
" println(i)\n",
"} // closed range: includes 100\n",
"\n",
"(1..100).forEach { i ->\n",
" println(i)\n",
"} //the same, but with boxing\n",
"\n",
"for (i in 1..<100) {\n",
" println(i)\n",
"} // half-open range: does not include 100\n",
"\n",
"for (x in 2..10 step 2) {\n",
" println(x)\n",
"}\n",
"for (x in 10 downTo 1) {\n",
" println(x)\n",
"}\n",
"\n",
"infix fun ClosedRange<Double>.step(step: Double): Sequence<Double> {\n",
" //TODO check arguments\n",
" var current = start\n",
" return sequence {\n",
" do {\n",
" yield(current)\n",
" current += step\n",
" } while (current <= endInclusive)\n",
" }\n",
"}\n",
"\n",
"for (x in 0.0..10.0 step 0.5){\n",
" println(x)\n",
"}"
],
"metadata": {
"datalore": {
"node_id": "hwJfUD7H5mDtjStAsGppk7",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": [
"## Map-reduce"
],
"attachments": {},
"metadata": {
"datalore": {
"node_id": "IsJiqd43JpY7BnZTeHNU4M",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"val list: List<Int> = listOf(1, 2, 3, 4, 5, 6)\n",
"\n",
"val result = list\n",
" //.stream().parallel()\n",
" //.asSequence()\n",
" .filter { it % 2 == 0 } //select even numbers\n",
" .map { it * it } // get square of each element\n",
" //.onEach { println(it) }\n",
" .sumOf { it } //use one of reduce operations\n",
" //.reduce { acc: Int, i: Int -> acc + i }\n",
"\n",
"result"
],
"metadata": {
"datalore": {
"node_id": "KKT62bidVYF8I147heptAS",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"source": [
"val sequence = sequence {\n",
" var counter = 1\n",
" while(true){\n",
" yield(counter++)\n",
" yield(counter++)\n",
" // println(counter)\n",
" }\n",
"}\n",
"\n",
"val result = sequence\n",
" .take(6)\n",
" .filter { it % 2 == 0 } //select even numbers\n",
" .map { it * it } // get square of each element\n",
" //.onEach { println(it) }\n",
" //.sumOf { it } //use one of reduce operations\n",
" .reduce { acc: Int, i: Int -> acc + i }\n",
"\n",
"result"
],
"metadata": {
"datalore": {
"node_id": "9qcw7ejFSF8QnAGdf1bAI0",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "markdown", "cell_type": "markdown",
"source": [ "source": [
@ -2176,7 +2199,7 @@
" add(it)\n", " add(it)\n",
" }\n", " }\n",
"}\n", "}\n",
"println(list)\n" "println(list)"
], ],
"metadata": { "metadata": {
"datalore": { "datalore": {
@ -2189,6 +2212,218 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"data class ImmutableObject(val a: String, val b: String, val c: Int)\n",
"\n",
"class ImmutableObjectBuilder(a: String) {\n",
" var a: String = a\n",
" var b: String = \"\"\n",
" var c = 0\n",
" \n",
" fun build() = ImmutableObject(a, b, c)\n",
"}\n",
"\n",
"fun ImmutableObject(a: String, block: ImmutableObjectBuilder.() -> Unit): ImmutableObject =\n",
" ImmutableObjectBuilder(a).apply(block).build()\n",
"\n",
"ImmutableObject(\"aValue\") {\n",
" c = 99\n",
"}"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"datalore": {
"node_id": "GKoCVcgdnSYPjsNCAJIkBB",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"cell_type": "markdown",
"source": "## Contains operator and ranges"
},
{
"metadata": {
"datalore": {
"node_id": "4mh1Lg6g8OWEIC1Qjgp9tN",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"cell_type": "code",
"source": [
"\n",
"val emailsList = emptyList<String>()\n",
"\n",
"// When used directly infix in operator checks if the element is contained in a collection\n",
"//using `operator fun contains`\n",
"\n",
"if (\"john@example.com\" in emailsList) {\n",
" println(\"is in list\")\n",
"}\n",
"\n",
"if (\"jane@example.com\" !in emailsList) {\n",
" println(\"not in list\")\n",
"}"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"datalore": {
"node_id": "1N4A00CAksn2nVg57DRKnp",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"cell_type": "code",
"source": [
"import java.time.*\n",
"\n",
"class DateRange(val start: Instant, val end: Instant)\n",
"\n",
"operator fun DateRange.contains(value: Instant): Boolean = value > start && value < end\n",
"\n",
"\n",
"println(Instant.now() in DateRange(Instant.EPOCH, Instant.MAX))"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"datalore": {
"node_id": "hwJfUD7H5mDtjStAsGppk7",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"cell_type": "code",
"source": [
"\n",
"// Another (different) use of `in` is iteration over range or collection using\n",
"// using `operator fun iterator`\n",
"\n",
"for (i in 1..100) {\n",
" println(i)\n",
"} // closed range: includes 100\n",
"\n",
"(1..100).forEach { i ->\n",
" println(i)\n",
"} //the same, but with boxing\n",
"\n",
"for (i in 1..<100) {\n",
" println(i)\n",
"} // half-open range: does not include 100\n",
"\n",
"for (x in 2..10 step 2) {\n",
" println(x)\n",
"}\n",
"\n",
"for (x in 10 downTo 1) {\n",
" println(x)\n",
"}\n",
"\n",
"infix fun ClosedRange<Double>.step(step: Double): Sequence<Double> {\n",
" //TODO check arguments\n",
" var current = start\n",
" return sequence {\n",
" do {\n",
" yield(current)\n",
" current += step\n",
" } while (current <= endInclusive)\n",
" }\n",
"}\n",
"\n",
"for (x in 0.0..10.0 step 0.5){\n",
" println(x)\n",
"}"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"datalore": {
"node_id": "IsJiqd43JpY7BnZTeHNU4M",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"cell_type": "markdown",
"source": "## Map-reduce"
},
{
"metadata": {
"datalore": {
"node_id": "KKT62bidVYF8I147heptAS",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"cell_type": "code",
"source": [
"val list: List<Int> = listOf(1, 2, 3, 4, 5, 6)\n",
"\n",
"val result = list\n",
" //.stream().parallel()\n",
" //.asSequence()\n",
" .filter { it % 2 == 0 } //select even numbers\n",
" .map { it * it } // get square of each element\n",
" //.onEach { println(it) }\n",
" //.sumOf { it } //use one of reduce operations\n",
" .reduce { acc: Int, i: Int -> acc + i }\n",
"\n",
"result"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"datalore": {
"node_id": "9qcw7ejFSF8QnAGdf1bAI0",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"cell_type": "code",
"source": [
"val sequence = sequence {\n",
" var counter = 1\n",
" while(true){\n",
" yield(counter++)\n",
" yield(counter++)\n",
" // println(counter)\n",
" }\n",
"}\n",
"\n",
"val result = sequence\n",
" .take(6)\n",
" .filter { it % 2 == 0 } //select even numbers\n",
" .map { it * it } // get square of each element\n",
" //.onEach { println(it) }\n",
" //.sumOf { it } //use one of reduce operations\n",
" .reduce { acc: Int, i: Int -> acc + i }\n",
"\n",
"result"
],
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "markdown", "cell_type": "markdown",
"source": [ "source": [
@ -2207,6 +2442,9 @@
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": [
"import java.nio.file.*\n",
"\n",
"\n",
"val stream = Files.newInputStream(Paths.get(\"file.txt\"))\n", "val stream = Files.newInputStream(Paths.get(\"file.txt\"))\n",
"// The resource is automatically closed when leaving the scope\n", "// The resource is automatically closed when leaving the scope\n",
"stream.bufferedReader().use { reader ->\n", "stream.bufferedReader().use { reader ->\n",
@ -2298,11 +2536,7 @@
"source": [ "source": [
"\n", "\n",
"open class Bad{\n", "open class Bad{\n",
" val value: Int\n", " val value: Int = requestValue()\n",
"\n",
" init {\n",
" value = requestValue()\n",
" }\n",
"\n", "\n",
" open fun requestValue(): Int {\n", " open fun requestValue(): Int {\n",
" doSomethingElse()\n", " doSomethingElse()\n",
@ -2327,6 +2561,28 @@
"outputs": [], "outputs": [],
"execution_count": null "execution_count": null
}, },
{
"metadata": {},
"cell_type": "code",
"source": [
"class BadString{\n",
" val value: String = requestValue()\n",
"\n",
" fun requestValue(): String {\n",
" doSomethingElse()\n",
" return \"2\"\n",
" }\n",
"\n",
" private fun doSomethingElse(){\n",
" println(value)\n",
" }\n",
"}\n",
"\n",
"BadString()"
],
"outputs": [],
"execution_count": null
},
{ {
"cell_type": "code", "cell_type": "code",
"source": [ "source": [
@ -2470,7 +2726,7 @@
" * The demonstration of use of inline [forEach] function with non-local return\n", " * The demonstration of use of inline [forEach] function with non-local return\n",
" */\n", " */\n",
"fun foo(): Int {\n", "fun foo(): Int {\n",
" listOf(1, 2, 3, 4, 5).forEach {\n", " listOf(1, 2, 3, 4, 5).forEachOdd {\n",
" if (it == 3) return it // non-local return directly to the caller of foo()\n", " if (it == 3) return it // non-local return directly to the caller of foo()\n",
" print(\"$it, \")\n", " print(\"$it, \")\n",
" }\n", " }\n",

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,791 @@
{
"cells": [
{
"cell_type": "code",
"source": [
"%use coroutines"
],
"metadata": {
"datalore": {
"node_id": "Al3t64xqN0DN3JmLKHOVn2",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "markdown",
"source": "# Три оси многозадачности"
},
{
"cell_type": "markdown",
"source": "### Синхронный х однопоточный х неконкурентный ",
"attachments": {},
"metadata": {
"datalore": {
"node_id": "TawmM9V8by8RGHfhNv7D3m",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"repeat(10){\n",
" println(\"Line number $it\")\n",
"}"
],
"metadata": {
"datalore": {
"node_id": "XzjwoelmODMg8pmaJRe1KK",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"source": [
"import java.util.stream.*\n",
"\n",
"IntStream.range(0, 100).sum()"
],
"metadata": {
"datalore": {
"node_id": "UuTmCNAMCpUAHaAwWVYJPy",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": "### Синхронный х однопоточный х конкурентный",
"attachments": {},
"metadata": {
"datalore": {
"node_id": "f6DGHwBOIRvKuYjtxVRn0W",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"val list = (0..100).toMutableList()\n",
"\n",
"list.forEach{\n",
" if(it % 2 == 0) list.remove(it)\n",
"}"
],
"metadata": {
"datalore": {
"node_id": "O1DPfMSAedOChaqU5JWXrU",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"source": [],
"metadata": {
"datalore": {
"node_id": "N3QIwvANEngnvMgsCVJatN",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": "### Синхронный х многопоточный х неконкурентный",
"attachments": {},
"metadata": {
"datalore": {
"node_id": "x9nGAXOgOlWxd4cu6Smio8",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"val sum = IntStream.range(0, 100).parallel().sum()\n",
"\n",
"println(sum)"
],
"metadata": {
"datalore": {
"node_id": "lRJGB0cHhpjQTdRdGynG0G",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"source": [],
"metadata": {
"datalore": {
"node_id": "1lLEGWWbB6qnFr1qjfSGpo",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": "### Асинхронный х однопоточный х неконкурентный",
"attachments": {},
"metadata": {
"datalore": {
"node_id": "OTRLxfWLADkMoc9ViJfeEq",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"fun runLongTask(result: Int = 8): Int {\n",
" Thread.sleep(100)\n",
" println(\"Task complete: $result\")\n",
" return result\n",
"}"
],
"metadata": {
"datalore": {
"node_id": "r1yVVtgMhexxzx7gGVmeIg",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"source": [
"import java.util.concurrent.*\n",
"\n",
"val executor = Executors.newSingleThreadExecutor()\n",
"\n",
"val future = executor.submit<Int> {\n",
" val result = runLongTask()\n",
" println(result)\n",
" result\n",
"}\n",
"\n",
"future.get()"
],
"metadata": {
"datalore": {
"node_id": "8YvIKfD1I7cfbiPRMpk0DC",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": "### Асинхронный х однопоточный х конкурентный ",
"attachments": {},
"metadata": {
"datalore": {
"node_id": "nyjKPayaltq8gBzq2bIP1c",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"interface Observable{\n",
" fun onChange(callback: (Int) -> Unit)\n",
"}\n",
"\n",
"val observable: Observable by lazy{ TODO() }"
],
"metadata": {
"datalore": {
"node_id": "UreOIHJpXQYfkjeHOvf1Bq",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"source": [
"val list: MutableList<Int> = mutableListOf<Int>()\n",
"\n",
"observable.onChange { \n",
" list.add(it)\n",
"}"
],
"metadata": {
"datalore": {
"node_id": "1in8iE7mL9m895XWUNh0Sl",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": "### Асинхронный х многопоточный х неконкурентный",
"attachments": {},
"metadata": {
"datalore": {
"node_id": "TczpOZrkCKogcT7x7XWAUT",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [],
"metadata": {
"datalore": {
"node_id": "YvgL8fFuneP9USjjnsfiQj",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"source": [
"val executor: ExecutorService = Executors.newFixedThreadPool(4)\n",
"\n",
"repeat(8){\n",
" executor.submit{\n",
" runLongTask(it)\n",
" }\n",
"}"
],
"metadata": {
"datalore": {
"node_id": "9NS1h5b5lJ0BEzieUt6xrr",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": "### Синхронный х многопоточный х конкурентный",
"attachments": {},
"metadata": {
"datalore": {
"node_id": "REBgToVc8iKIrODCWXPdZj",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"import kotlin.io.path.Path\n",
"import kotlin.io.path.writeText\n",
"\n",
"val file = Path(\"someFile.txt\")\n",
"\n",
"val data: List<String> = emptyList()\n",
"\n",
"data.stream()\n",
" .parallel()\n",
" .forEach { \n",
" file.writeText(it)\n",
" }"
],
"metadata": {
"datalore": {
"node_id": "3AjItM8WtjFE9qJo9JvZFW",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": "### Асинхронный х многопоточный х конкурентный",
"attachments": {},
"metadata": {
"datalore": {
"node_id": "XDCp5EjIq8v6ABeo5q2K6S",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"val cache = mutableMapOf<Int, Int>\n",
"\n",
"val consumer: (Int) -> Unit = TODO()\n",
"\n",
"\n",
"repeat(8){ i->\n",
" executor.submit{\n",
" val result = cache.getOrPut(i){\n",
" runLongTask(i)\n",
" }\n",
" consumer(result)\n",
" }\n",
"}"
],
"metadata": {
"datalore": {
"node_id": "taOKUd5Gc9U6TuGVFZJvew",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": [
"## Инструменты"
],
"attachments": {},
"metadata": {
"datalore": {
"node_id": "bSK4aInljsXYinbOTNSLdc",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "markdown",
"source": [
"#### Thread"
],
"attachments": {},
"metadata": {
"datalore": {
"node_id": "qjWpglMy3eSM475ozgnDPA",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"import kotlin.concurrent.*\n",
"\n",
"val t = thread {\n",
" runLongTask()\n",
"}\n",
"t.join()"
],
"metadata": {
"datalore": {
"node_id": "nEZ6jKJhVHhsjMvptTQ3rU",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "code",
"source": [],
"metadata": {
"datalore": {
"node_id": "k35GcE4VUIMtrznZ0C3BmC",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": [
"#### Future"
],
"attachments": {},
"metadata": {
"datalore": {
"node_id": "bX0GaqyAH6q7Max0Tky7DW",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"val future = executor.submit<Int>{\n",
" runLongTask()\n",
"}\n",
"\n",
"future.get()\n",
"future.cancel(true)"
],
"metadata": {
"datalore": {
"node_id": "TVhCm0JtWiYFFqWYORxuya",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": [
"#### CompletableFuture"
],
"attachments": {},
"metadata": {
"datalore": {
"node_id": "a5BY9U8m9OeZSSsS0yGRSZ",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"import java.util.concurrent.*\n",
"\n",
"val cf = CompletableFuture.supplyAsync{\n",
" runLongTask()\n",
"}\n",
"\n",
"val cf2 = cf.whenComplete{ res, _ ->\n",
" runLongTask(res - 1)\n",
"}\n",
"\n",
"val cf3 = cf.whenComplete{ res, _ ->\n",
" runLongTask(res + 1)\n",
"}\n",
"\n",
"cf2.join()\n",
"cf3.join()"
],
"metadata": {
"datalore": {
"node_id": "2rchFZt5trGqzOCuU3aPvz",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": [
"#### Lock"
],
"attachments": {},
"metadata": {
"datalore": {
"node_id": "izHWuE5ZZo1hphjMmc7BHj",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"import java.util.concurrent.locks.*\n",
"\n",
"val list = mutableListOf<Int>()\n",
"val lock = ReentrantLock()\n",
"\n",
"val cf4 = CompletableFuture.supplyAsync{\n",
" val res = runLongTask(4)\n",
" lock.withLock { \n",
" list.add(res)\n",
" }\n",
"}\n",
"\n",
"val cf5 = CompletableFuture.supplyAsync{\n",
" val res = runLongTask(5)\n",
" lock.withLock { \n",
" list.add(res)\n",
" }\n",
"}\n",
"\n",
"cf4.join()\n",
"cf5.join()\n",
"\n",
"list"
],
"metadata": {
"datalore": {
"node_id": "JTXxcGnvTS36OVX6GkJfkK",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "markdown",
"source": "Reactive streams"
},
{
"metadata": {},
"cell_type": "code",
"source": [
"class A(val value: Int)\n",
"class B(val value: Int)\n",
"\n",
"val aFlow = flowOf<A>()\n",
"val bFlow = flowOf<B>()\n",
"\n",
"val combined = aFlow.zip(bFlow){ a, b->\n",
" a.value + b.value\n",
"}.debounce(2.seconds)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "markdown",
"source": "Actor"
},
{
"metadata": {},
"cell_type": "code",
"source": [
"sealed class Event {\n",
" class Open(val transactionId: Int): Event()\n",
" class Close(val tranactionId: Int): Event()\n",
"}\n",
"\n",
"fun interface Actor {\n",
" suspend fun receive(event: Event)\n",
"}\n",
"\n",
"val actor = object : Actor {\n",
" private var transaction: Int? = null\n",
" override suspend fun receive(event: Event) {\n",
" when (event) {\n",
" is Event.Open -> if (transaction != null) {\n",
" error(\"Transaction already open\")\n",
" } else {\n",
" transaction = event.transactionId\n",
" }\n",
" is Event.Close ->if (transaction != event.tranactionId) {\n",
" error(\"Wrong transaction id: ${event.tranactionId}\")\n",
" } else {\n",
" transaction = null\n",
" }\n",
" }\n",
" }\n",
"\n",
"}"
],
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": [
"## Сорта асинхронности"
],
"attachments": {},
"metadata": {
"datalore": {
"node_id": "YDqoXAD2XEED9MSPRuMMzL",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "markdown",
"source": [
"#### Callback"
],
"attachments": {},
"metadata": {
"datalore": {
"node_id": "kb1ccsTMIZX3aacLF6gPrJ",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [
"import java.net.*\n",
"import java.net.http.*\n",
"import java.net.http.HttpResponse.*\n",
"\n",
"val client: HttpClient = HttpClient.newHttpClient()\n",
"\n",
"val request : HttpRequest = HttpRequest.newBuilder()\n",
" .uri(URI.create(\"https://sciprog.center\"))\n",
" .GET().build()\n",
"\n",
"val regex = \"\"\"href=\\\"(.+\\.png)\\\"\"\"\".toRegex()\n",
"\n",
"client.sendAsync(request, BodyHandlers.ofString())\n",
" .thenApply{ it.body() }\n",
" .thenApply{ \n",
" val resources = regex.findAll(it).map{it.groupValues[1]}\n",
"\n",
" resources.forEach { resourceName->\n",
" val resourceRequest : HttpRequest = HttpRequest.newBuilder()\n",
" .uri(URI.create(\"https://sciprog.center$resourceName\"))\n",
" .GET().build()\n",
" client.sendAsync(resourceRequest, BodyHandlers.ofByteArray()).thenAccept{ resourceResponse ->\n",
" val bodyBytes = resourceResponse.body()\n",
" //do something with the body\n",
" }\n",
" }\n",
" resources\n",
" }\n",
" .thenAccept{ println(it.toList()) }\n",
" .join()"
],
"metadata": {
"datalore": {
"node_id": "jZrkouEiPJnMCCpxTFlgVP",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
},
{
"cell_type": "markdown",
"source": [
"#### Реактивные потоки"
],
"attachments": {},
"metadata": {
"datalore": {
"node_id": "7zwURNaHnaTgOTAZumDDcd",
"type": "MD",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
}
},
{
"cell_type": "code",
"source": [],
"metadata": {
"datalore": {
"node_id": "lPXl5Gkvu7CuhlhUV7YJab",
"type": "CODE",
"hide_input_from_viewers": true,
"hide_output_from_viewers": true
}
},
"outputs": [],
"execution_count": null
}
],
"metadata": {
"kernelspec": {
"display_name": "Kotlin",
"language": "kotlin",
"name": "kotlin"
},
"datalore": {
"computation_mode": "JUPYTER",
"package_manager": "pip",
"base_environment": "default",
"packages": [],
"report_row_ids": [],
"version": 3
}
},
"nbformat": 4,
"nbformat_minor": 4
}