orangy
09/04/2017, 2:16 PMdreamreal
09/05/2017, 9:56 AMagomez
09/05/2017, 7:28 PMnfrankel
09/07/2017, 5:40 PMalien11689
09/09/2017, 8:04 AMgaetan
09/12/2017, 9:00 AMroberto.guerra
09/15/2017, 6:30 PMnfrankel
09/18/2017, 1:42 PMjmfayard
09/21/2017, 9:39 AMorangy
09/25/2017, 5:25 PMKotlin is the most loved programming language with a satisfaction average of 9.1 (out of 10).
Kotlin is the most frequently named technology people are excited about and happy to work with.
irus
09/27/2017, 11:15 AMirus
10/09/2017, 3:38 PMwakingrufus
10/09/2017, 8:14 PMOleksii
10/11/2017, 9:33 PMmarcinmoskala
10/12/2017, 10:46 AMmarcinmoskala
10/12/2017, 10:48 AMtipsy
10/19/2017, 9:14 AMpsycoderblog
10/21/2017, 1:35 AMhttps://www.youtube.com/watch?v=ET-HXhdbagI▾
nklmish
10/22/2017, 1:23 PMmbonnet
10/23/2017, 8:56 AMorangy
10/25/2017, 5:26 PMbamdmux
10/27/2017, 5:14 AMDave Leeds
10/30/2017, 10:52 PMOptional
to Kotlin's null-safety features.
https://typealias.com/guides/java-optionals-and-kotlin-nulls/arocnies
11/05/2017, 2:09 PMnfrankel
11/06/2017, 6:13 AMtipsy
11/07/2017, 4:14 PMcedric
11/07/2017, 6:26 PMdariuszbacinski
11/08/2017, 9:12 PMcedric
11/09/2017, 3:05 AMFree
in Kotlin?!?cedric
11/09/2017, 6:46 AMThe Box is a class, while Box<Int>, Box<A>, Box<List<String>> are types generated by generic class Box
Box
is not a class, it's a type constructor. Box<Int>
is a class. Also, types are usually the global name used to denote a structure, e.g. an interface, a class, a trait, etc... I feel you made up your own meaning for these terms in the sentence i quoted.cedric
11/09/2017, 6:46 AMThe Box is a class, while Box<Int>, Box<A>, Box<List<String>> are types generated by generic class Box
Box
is not a class, it's a type constructor. Box<Int>
is a class. Also, types are usually the global name used to denote a structure, e.g. an interface, a class, a trait, etc... I feel you made up your own meaning for these terms in the sentence i quoted.voddan
11/09/2017, 7:46 AMBox<Int>
is a class? In C++ I would totally agree with you (Box<T>
is a template there), but on JVM a class is something that has a class object (that thing that contains static fields and the method table), so Box
must be a class, and Box<Int>
is a compile-time type on top of that classmarcinmoskala
11/09/2017, 9:01 AMBox
xD Box
to generic class, and Box<Integer>
is generic type.voddan
11/09/2017, 4:07 PMit is correctWhich point of view do you support?
marcinmoskala
11/10/2017, 6:44 AM