io.provenance.eventstream.Conditions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of es-core Show documentation
Show all versions of es-core Show documentation
A collection of libraries to connect and stream blocks from a node
The newest version!
package io.provenance.eventstream
inline fun requireType(item: Any, block: () -> String): T {
require(item is T) { block() }
return item
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy