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

akka.util.WeakMap.scala Maven / Gradle / Ivy

The newest version!
package akka.util

import scala.scalajs.js

@js.native
@js.annotation.JSName("WeakMap")
class WeakMap[K <: AnyRef, V] extends js.Object {

  def delete(key: K): Unit = js.native

  def has(key: K): Boolean = js.native

  def get(key: K): V = js.native

  def set(key: K, value: V): Unit = js.native
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy