Args5

interface Args5<A1, A2, A3, A4, A5> : Args

Represents an Args with 5 arguments.

Since

1.0.0

Properties

Link copied to clipboard
abstract val a1: A1

The value of argument 1.

Link copied to clipboard
abstract val a2: A2

The value of argument 2.

Link copied to clipboard
abstract val a3: A3

The value of argument 3.

Link copied to clipboard
abstract val a4: A4

The value of argument 4.

Link copied to clipboard
abstract val a5: A5

The value of argument 5.

Link copied to clipboard
abstract val representation1: String?

The representation of argument 1.

Link copied to clipboard
abstract val representation2: String?

The representation of argument 2.

Link copied to clipboard
abstract val representation3: String?

The representation of argument 3.

Link copied to clipboard
abstract val representation4: String?

The representation of argument 4.

Link copied to clipboard
abstract val representation5: String?

The representation of argument 5.

Functions

Link copied to clipboard
abstract fun <A6> append(arg1: Args1<A6>): Args6<A1, A2, A3, A4, A5, A6>

Creates a new Args6 by copying this Args5 and appending the given arg1.

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

Creates a new Args7 by copying this Args5 and appending the given arg2.

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

Creates a new Args8 by copying this Args5 and appending the given arg3.

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

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

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

Creates a new Args10 by copying this Args5 and appending the given arg5.

Link copied to clipboard
operator fun <A1, A2, A3, A4, A5> Args5<A1, A2, A3, A4, A5>.component1(): A1

Extracts a1 (the 1 argument) of this Args5.

Link copied to clipboard
operator fun <A1, A2, A3, A4, A5> Args5<A1, A2, A3, A4, A5>.component2(): A2

Extracts a2 (the 2 argument) of this Args5.

Link copied to clipboard
operator fun <A1, A2, A3, A4, A5> Args5<A1, A2, A3, A4, A5>.component3(): A3

Extracts a3 (the 3 argument) of this Args5.

Link copied to clipboard
operator fun <A1, A2, A3, A4, A5> Args5<A1, A2, A3, A4, A5>.component4(): A4

Extracts a4 (the 4 argument) of this Args5.

Link copied to clipboard
operator fun <A1, A2, A3, A4, A5> Args5<A1, A2, A3, A4, A5>.component5(): A5

Extracts a5 (the 5 argument) of this Args5.

Link copied to clipboard
abstract fun dropArg1(): Args4<A2, A3, A4, A5>

Creates a new Args4 by copying this Args5 but dropping its argument 1 (Args5.a1).

Link copied to clipboard
abstract fun dropArg2(): Args4<A1, A3, A4, A5>

Creates a new Args4 by copying this Args5 but dropping its argument 2 (Args5.a2).

Link copied to clipboard
abstract fun dropArg3(): Args4<A1, A2, A4, A5>

Creates a new Args4 by copying this Args5 but dropping its argument 3 (Args5.a3).

Link copied to clipboard
abstract fun dropArg4(): Args4<A1, A2, A3, A5>

Creates a new Args4 by copying this Args5 but dropping its argument 4 (Args5.a4).

Link copied to clipboard
abstract fun dropArg5(): Args4<A1, A2, A3, A4>

Creates a new Args4 by copying this Args5 but dropping its argument 5 (Args5.a5).

Link copied to clipboard
abstract fun get(): Array<Any>
Link copied to clipboard
abstract fun withArg1(value: A1, representation: String? = null): Args5<A1, A2, A3, A4, A5>

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

Link copied to clipboard
abstract fun withArg2(value: A2, representation: String? = null): Args5<A1, A2, A3, A4, A5>

Creates a new Args5 by coping this Args5 but replaces the argument 2 (Args5.a2) with the given value (and its representation with the given representation).

Link copied to clipboard
abstract fun withArg3(value: A3, representation: String? = null): Args5<A1, A2, A3, A4, A5>

Creates a new Args5 by coping this Args5 but replaces the argument 3 (Args5.a3) with the given value (and its representation with the given representation).

Link copied to clipboard
abstract fun withArg4(value: A4, representation: String? = null): Args5<A1, A2, A3, A4, A5>

Creates a new Args5 by coping this Args5 but replaces the argument 4 (Args5.a4) with the given value (and its representation with the given representation).

Link copied to clipboard
abstract fun withArg5(value: A5, representation: String? = null): Args5<A1, A2, A3, A4, A5>

Creates a new Args5 by coping this Args5 but replaces the argument 5 (Args5.a5) with the given value (and its representation with the given representation).