Skip to main content

seq_concat

Function seq_concat 

Source
pub fn seq_concat(
    left: RuntimeValue,
    right: RuntimeValue,
) -> Result<RuntimeValue, String>
Expand description

a followed by b — merge two sequences into one fresh sequence. Element order is preserved: all of a, then all of b. Operands must both be sequences.