All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scalatra.util.MutableMapWithIndifferentAccess.scala Maven / Gradle / Ivy

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