Args1

interface Args1<A1> : Args

Represents an Args with 1 argument.

Since

1.0.0

Properties

Link copied to clipboard
abstract val a1: A1

The value of argument 1.

Link copied to clipboard
abstract val representation1: String?

The representation of argument 1.

Functions

Link copied to clipboard
abstract fun <A2> append(arg1: Args1<A2>): Args2<A1, A2>

Creates a new Args2 by copying this Args1 and appending the given arg1.

abstract fun <A2, A3> append(arg2: Args2<A2, A3>): Args3<A1, A2, A3>

Creates a new Args3 by copying this Args1 and appending the given arg2.

abstract fun <A2, A3, A4> append(arg3: Args3<A2, A3, A4>): Args4<A1, A2, A3, A4>

Creates a new Args4 by copying this Args1 and appending the given arg3.

abstract fun <A2, A3, A4, A5> append(arg4: Args4<A2, A3, A4, A5>): Args5<A1, A2, A3, A4, A5>

Creates a new Args5 by copying this Args1 and appending the given arg4.

abstract fun <A2, A3, A4, A5, A6> append(arg5: Args5<A2, A3, A4, A5, A6>): Args6<A1, A2, A3, A4, A5, A6>

Creates a new Args6 by copying this Args1 and appending the given arg5.

abstract fun <A2, A3, A4, A5, A6, A7> append(arg6: Args6<A2, A3, A4, A5, A6, A7>): Args7<A1, A2, A3, A4, A5, A6, A7>

Creates a new Args7 by copying this Args1 and appending the given arg6.

abstract fun <A2, A3, A4, A5, A6, A7, A8> append(arg7: Args7<A2, A3, A4, A5, A6, A7, A8>): Args8<A1, A2, A3, A4, A5, A6, A7, A8>

Creates a new Args8 by copying this Args1 and appending the given arg7.

abstract fun <A2, A3, A4, A5, A6, A7, A8, A9> append(arg8: Args8<A2, A3, A4, A5, A6, A7, A8, A9>): Args9<A1, A2, A3, A4, A5, A6, A7, A8, A9>

Creates a new Args9 by copying this Args1 and appending the given arg8.

abstract fun <A2, A3, A4, A5, A6, A7, A8, A9, A10> append(arg9: Args9<A2, A3, A4, A5, A6, A7, A8, A9, A10>): Args10<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10>

Creates a new Args10 by copying this Args1 and appending the given arg9.

Link copied to clipboard
operator fun <A1> Args1<A1>.component1(): A1

Extracts a1 (the 1 argument) of this Args1.

Link copied to clipboard
abstract fun get(): Array<Any>
Link copied to clipboard
abstract fun withArg1(value: A1, representation: String? = null): Args1<A1>

Creates a new Args1 by coping this Args1 but replaces the argument 1 (Args1.a1) with the given value (and its representation with the given representation).