so what is your opinion on this in that context? `...
# getting-started
h
so what is your opinion on this in that context?
Copy code
override fun toString(): String =
            StringBuilder("$fitness : ").apply {
                repeat(NUM_MUTABLE_ATTRIBUTES) { attribute ->
                    append(String.format("%.4f ", this[attribute]))
                }
            }.toString()