Enum tcl::interpreter::AppendStyle [] [src]

pub enum AppendStyle {
    Replace,
    Append,
    ReplaceAsList,
    AppendAsList,
}

When setting a variable, how should we handle existing values

Variants

If the variable exists, replace it

If the variable exists, append it

Set the variable to a single-element list

If the variable exists, append a list element to it