org.scalatra.util.MutableMapWithIndifferentAccess.scala Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy