AudioParamMap

The AudioParamMap interface of the Web Audio API represents an iterable and read-only set of multiple audio parameters.

MDN Reference

Properties

Link copied to clipboard
abstract override val size: Int

Functions

Link copied to clipboard
Link copied to clipboard
abstract fun forEach(action: (value: AudioParam, key: AudioParamName) -> Unit)
Link copied to clipboard
abstract fun get(key: AudioParamName): AudioParam?
open operator fun get(key: Symbol.iterator): () -> JsIterator<Tuple2<AudioParamName, AudioParam>>
Link copied to clipboard
abstract override fun has(key: AudioParamName): Boolean
Link copied to clipboard
abstract fun keys(): JsIterator<AudioParamName>
Link copied to clipboard
abstract fun values(): JsIterator<AudioParam>