Indexed

data class Indexed(val argList: List<Any>) : TolgeeMessageParams(source)

Represents indexed parameters used in formatting messages.

This class is designed to handle indexed parameters for use in formatted strings. It allows accessing the parameters by their position or name.

Constructors

Link copied to clipboard
constructor(vararg formatArgs: Any)

Secondary constructor for the Indexed class.

constructor(argList: List<Any>)

Properties

Link copied to clipboard

A collection of arguments used for indexed formatting.

Functions

Link copied to clipboard
open operator override fun get(name: CharSequence): Any?

Retrieves the value associated with the given name from the list of parameters.