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

software.amazon.smithy.kotlin.codegen.utils.OptionalExt.kt Maven / Gradle / Ivy

/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

package software.amazon.smithy.kotlin.codegen.utils

import java.util.*

/**
 * Get the value if present otherwise return null
 */
fun  Optional.getOrNull(): T? = orElse(null)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy