Package-level declarations

Properties

Link copied to clipboard

Enables debug mode.

Link copied to clipboard
const val VERSION: String

Functions

Link copied to clipboard
inline fun debug(block: () -> Unit)

Debug scope function; Use anywhere to add code called only in debug mode.

Link copied to clipboard
inline fun <T> T.debug(block: (T) -> Unit): T

Debug scope function; Use anywhere to add code called only in debug mode.

Link copied to clipboard
inline fun <T> T.debugIf(predicate: (T) -> Boolean, block: (T) -> Unit): T
Link copied to clipboard
inline fun <T> Collection<T>.debugIfEmpty(block: (Collection<T>) -> Unit): Collection<T>
Link copied to clipboard
inline fun <T> Collection<T>.debugIfNotEmpty(block: (Collection<T>) -> Unit): List<T>
Link copied to clipboard
fun main(args: Array<String>)
Link copied to clipboard
Link copied to clipboard
fun typoSuggester(enteredValue: String, possibleValues: List<String>): List<String>