Kotlin is a statically-typed JVM-targeted programming language developed by JetBrains

learn more… | top users | synonyms

0
votes
1answer
36 views

Kotlin Ternary Conditional Operator

What is the equivalent of this expression in Kotlin? a ? b : c This is not valid code in Kotlin.
0
votes
1answer
36 views

Kotlin and WebSockets

I'm making a small server-side application that will communicate with a browser via WebSockets, and am considering writing it in Kotlin. Is there a WebSockets API that works particularly well with ...
0
votes
1answer
36 views

Kotlin Annotation: Type mismatch: inferred type is java.lang.Class<foo> but java.lang.Class<out jet.Annotation> was expected

Given the following Kotlin Annotation: public Retention(RetentionPolicy.RUNTIME) annotation class foo(val text : String) and the following code to check if a class is annotated by above annotation: ...
1
vote
2answers
43 views

Kotlin: how to pass a function as parameter to another?

given funciton foo : fun foo(m: String, bar: (m: String) -> Unit) { bar(m) } we can do: foo("a meesage", { println("this is a message: $it") } ) //or foo("a meesage") { println("this is a ...
2
votes
1answer
103 views

Accessing Kotlin class object from Java

I have a Kotlin class which has a class object, e.g. public class Foo { public class object { public val SomeValue : Int = 0 } } If I'm using this class from Java, how do I access ...
0
votes
2answers
61 views

How to run Kotlin class from the command line?

I understand this question has been asked before, but none of the information there has helped me. Here is my situation: I can't run a compiled Kotlin class. When I try to run it like I would a ...
0
votes
1answer
74 views

kotlin command line compiler

How do I use the js command line compiler? fun main(args: Array<String>): Unit { println("Hello world!") } E:\kotlinc\bin>kotlinc-js -output test -sourceFiles test.kt ERROR: ...
2
votes
1answer
143 views

How can I check for generic type in Kotlin

I'm trying to test for a generic type in Kotlin. if (value is Map<String, Any>) { ... } But the compiler complains with Cannot check for instance of erased type: jet.Map<jet.String, ...
1
vote
1answer
155 views

Java-annotation parameters in Kotlin

I'm experimenting with Kotlin and I have a following Java-annotation @Target( { TYPE }) @Retention(RUNTIME) public @interface View { String[] url() default ""; Class<? extends ...
3
votes
1answer
342 views

Kotlin compiler to JavaScript in JavaScript?

Is there a Kotlin compiler to JavaScript available in JavaScript (like CoffeeScript or Coco)? If not, when is expected to be available?
1
vote
1answer
176 views

foreach in kotlin

I see an example in the official site: fun main(args : Array<String>) { args filter {it.length() > 0} foreach {print("Hello, $it!")} } But when I copied it to idea, it reports that ...
1
vote
1answer
192 views

How to convert Array<T?>? into Array<T> in Kotlin

I'm taking my first steps in Kotlin, and trying to write a simple string split function. I started with this: fun splitCSV(s : String) : Array<String> { return s.split(","); } Which I ...
2
votes
3answers
142 views

In Kotlin can I create a range that counts backwards?

I looked at the documentation for the Ranges and I see no mention of backwards ranges. Is it possible to do something like: for (n in 100..1) { println(n) } And get results: 100 99 98 ...
6
votes
2answers
317 views

In Kotlin How Can I Convert an Int? to an Int

I'm using a HashMap<Int, Int> in Kotlin and when I get out of it the return type is Int?. How can I convert the Int? to an Int? So far I've tried using Int?.toInt(), but that seems to be ...
4
votes
1answer
368 views

Difference between ByteArray and Array<Byte> in kotlin

I don't understand why e.g. the java.security.MessageDigest.digest() method which is declared as returning byte[] in Java returns a ByteArray in Kotlin although Kotlin usually seems to call byte[] an ...
1
vote
3answers
370 views

how to run compiled class file in Kotlin?

Jetbrain provides documents but I can't find how to run compiled class file of Kotlin. hello.kt: fun main(args : Array<String>) { println("Hello, world!") } compile: $ kotlinc -out dist ...
4
votes
3answers
306 views

How did Kotlin get its name? [closed]

How did the Kotlin language get its name? I'm particularly interested since Kotlin is something I might type by accident while writing my name.
1
vote
1answer
56 views

Reason for precedence of operators with a type on the right-hand side

http://confluence.jetbrains.net/display/Kotlin/Grammar#Grammar-Precedence gives the operator precedence table for Kotlin, including the operators with a type on the right-hand side, :, as and as?, ...
2
votes
0answers
1k views

What are the differences between Scala and Kotlin [closed]

Kotlin is the new "statically-typed JVM-targeted programming language" with main design goals such as being Java compatible, fast compile times, and supporting cool other modern features (fp etc) that ...
18
votes
2answers
3k views

Reified generics in Scala 2.10

The lack of reified generics in Scala is the thing that bugs me the most about the language, since simple things cannot be implemented without using complicated constructs. Both Kotlin and Ceylon ...
3
votes
1answer
362 views

Understanding traits in Kotlin

In Kotlin we'll have possibility to create a "trait that may require a class being extended on the call side", like class Bar {} trait T1 : Bar {} class Foo : Bar, T1, T2, T3 {} class Wrong : ...