For the complete documentation index, see llms.txt. This page is also available as Markdown.
list.append()
The modified list.append() function returns a copy of $list with $val added and/or with multiple $values added to the end.
The function is modified by adding arbitrary values to the end of the parameters to preserve the original functionality.
// Sass.@use'sass:list';// The `list.append()` function.@functionappend($list,$val,$separator:auto,$values...){@each$valueinlist.join(($val,),$values,comma){$list:list.append($list,$value,$separator);}@return$list;}