jolkdarr

Results 9 comments of jolkdarr

_Hi_! For Maxthon, Alessandro has designed an icon that may be used: http://www.icons101.com/icon/id_54121/setid_2043/Flatwoken_by_Alessandro_Roncone/maxthon

Bad syntax highlighting when quote marks are used: ```kotlin fun format(s: String) = s.replace('"', '_') // fails ``` Workaround: ```kotlin fun format(s: String) = s.replace("\"", '_') // OK ```

Hi FYI, there is a tool that may help to analyse Kotlin files: https://github.com/arturbosch/detekt

Hi I agree with you: the library fatness shall be mastered. However, I think that a single primitive table class (like `IntIntTable`) would be useful by covering many use cases...

Hi Sorry if I weren't precise enough about the data structure. I had in mind something that could somehow replace the `Table` class from `Guava` library which I'm still required...

- [x] As mentioned above, Tables could be implemented with maps of maps. Therefore, sparseness doesn't matter. - [x] Yes, I'm using `rowMap`, `columnMap` and `cellSet` for iteration purposes. -...

Hi Such pattern isn't actually necessary with Kotlin. See https://kotlinlang.org/docs/reference/null-safety.html for details. Of course, it can be implemented anyway.

Hi Below, a small snippet (from the Sourcemaking Java example): ```kotlin import java.io.OutputStream import java.io.PrintStream object NullOutputStream : OutputStream() { override fun write(b: Int) { // do nothing } }...

A very simple example: ```kotlin abstract class Prototype : Cloneable { public override fun clone() = super.clone() as Prototype } class ConcretePrototype1 : Prototype() { public override fun clone() =...