jshmrsn
12/13/2015, 3:23 PMprivate val _childExpressions = arrayListOf<Expression>()
val childExpressions: Iterable<Expression> // EDIT: Or I could just return List<Expression>, my intention is to remove the mutability of _childExpressions
get() {
return this.childExpressions.asIterable()
}
Thanks for the tips. I didn't mean to get into the specifics of my code, though I suppose it's relevant in deciding what language features are actually valuable to add to Kotlin