get

operator fun <T : Attribute> List<T>.get(uuid: UUID): T

Gets the Attribute of T with the given UUID from a List of T

Return

the Attribute of T with the given UUID

Throws


operator fun <T : Attribute> Flow<List<T>>.get(uuid: UUID): Flow<T>

Gets the Flow of Attribute of T with the given UUID from a Flow of List of T

Return

the Flow of Attribute of T with the given UUID. Flow throws NoSuchElementException if the attribute cannot be found.