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

com.gabrielfeo.develocity.api.extension.BuildAttributesValueExtensions.kt Maven / Gradle / Ivy

The newest version!
package com.gabrielfeo.develocity.api.extension

import com.gabrielfeo.develocity.api.model.BuildAttributesValue

operator fun List.get(name: String): String? {
    return find { it.name == name }?.value
}

operator fun List.contains(name: String): Boolean {
    return any { it.name == name }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy