ResultConverter

fun interface ResultConverter<T, R>

A functional interface for converting a value of type T to type R.

This is used internally by DevCoreArgumentType to transform parsed argument values.

Type Parameters

T

the input type

R

the output type

Functions

Link copied to clipboard
abstract fun convert(var1: T): R

Converts a value of type T to type R.