I'm trying to define a clean interface for clients to use my library. Some sample client code is below.
for (security <- allSecurities) {
val askLast = ask
}
The problem is I would like "ask" to automatically be passed "security". My attempt at doing this in the parent class is as follows
var lastSecurity = ""
private val lastAsk = new HashMap[...]
def allSecurities = for {
security <- lastTrade.keySet.toList
} yield {
lastSecurity = security
security
}
def ask = lastAsk(lastSecurity).price
Unfortunately it doesn't quite work as I envisaged since in the client lastSecurity has the same value throughout the entire loop instead of being dynamically updated.. So basically I'm trying to allow clients to do
val askLast = ask
instead of
val askLast = ask(security)
Can I do this in Scala?