invoke

open operator fun invoke(vararg values: H): HeaderValues<H>(source)

Binds one or more concrete values to this header definition.

The resulting HeaderValues is no longer required from the caller because Tapik already knows which values to send.


open operator fun invoke(): Nothing(source)

Deprecated (with error)

Cannot call invoke() without arguments

Replace with

invoke(/*at least 1 argument*/)

Binds one or more concrete values to this header definition.

The resulting HeaderValues is no longer required from the caller because Tapik already knows which values to send.