In one of the courses on reactive programming I have seen such a construct
class Consoldator(observed: List[BankAccount]) extend Subscriber:
observed.foreach(_.subscribe(this))
private var total: Int =_
compute()
end Consolidator
I know that =_
means a default value. But what exactly it means here. Can you please point me to the place in the book.