MIDIOutputMap

The MIDIOutputMap read-only interface of the Web MIDI API provides the set of MIDI output ports that are currently available. Available only in secure contexts.

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: MIDIOutput, key: JsString) -> Unit)
Link copied to clipboard
abstract fun get(key: JsString): MIDIOutput?
open operator fun get(key: Symbol.iterator): () -> JsIterator<JsTuple2<JsString, MIDIOutput>>
Link copied to clipboard
abstract override fun has(key: JsString): Boolean
Link copied to clipboard
open inline operator fun iterator(): Iterator<JsTuple2<JsString, MIDIOutput>>
Link copied to clipboard
abstract fun keys(): JsIterator<JsString>
Link copied to clipboard
abstract fun values(): JsIterator<MIDIOutput>