org.scalatra.util.MutableMapWithIndifferentAccess.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra_2.8.2.RC1 Show documentation
Show all versions of scalatra_2.8.2.RC1 Show documentation
The core Scalatra framework
The newest version!
package org.scalatra.util
import scala.collection.mutable.Map
/**
* @see MapWithIndifferentAccess
*/
trait MutableMapWithIndifferentAccess[B] extends MapWithIndifferentAccess[B] with Map[String, B] {
def update(key: Symbol, value: B): Unit = update(key.name, value)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy