Termcap.param

Evaluates a terminal capability string and expands it, using the supplied integer parameters.

  1. string param(string s, int[] args)
    struct Termcap
    static pure @safe
    string
    param
    (
    string s
    ,
    int[] args...
    )
  2. string param(string s, string[] args)
  3. string param(string s)

Parameters

s string

A terminal capability string. The actual string, not the name of the capability.

args int[]

A list of parameters for the capability.

Return Value

Type: string

The evaluated capability with parameters applied.

Meta