And

A subclass of GlobalParameter that adds pairs of strings to a mutable list.

This class inherits from the GlobalParameter class and overrides the addParameter method. It uses a mutable list of pairs of strings as its internal data structure. It adds pairs of strings to this list using the add method. The list can then be accessed by other classes using the parameters property.

Author

TOTHTOMI

Since

Jul. 25, 2023

Constructors

Link copied to clipboard
constructor()

Creates a new And object with an empty list of parameters.

Properties

Link copied to clipboard

a mutable list of pairs of strings that stores the global parameters.

Functions

Link copied to clipboard
open override fun addParameter(pair: Pair<String, String>)

Adds a pair of strings to the parameters list.

Link copied to clipboard
infix fun String.to(value: String)

Creates a pair of strings that represent a global parameter.