InvUI/invui-kotlin/src/main/kotlin/de/studiocode/invui/Items.kt

8 lines
217 B
Kotlin
Raw Normal View History

2023-01-28 11:32:16 +00:00
@file:Suppress("PackageDirectoryMismatch")
package de.studiocode.invui.item
/**
* Calls [Item.notifyWindows] for all items in this [Iterable].
*/
fun Iterable<Item>.notifyWindows() = forEach { it.notifyWindows() }