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

skinny.micro.data.MutableMapWithIndifferentAccess.scala Maven / Gradle / Ivy

The newest version!
package skinny.micro.data

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