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

commonMain.Descriptor.kt Maven / Gradle / Ivy

There is a newer version: 0.35.0-rc
Show newest version
package com.juul.kable

import com.benasher44.uuid.Uuid

internal fun  List.first(
    descriptorUuid: Uuid,
): T = firstOrNull(descriptorUuid)
    ?: throw NoSuchElementException("Descriptor $descriptorUuid not found")

internal fun  List.firstOrNull(
    descriptorUuid: Uuid,
): T? = firstOrNull { it.descriptorUuid == descriptorUuid }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy