[next][previous][up][top][index]
search for:

prepend -- add to the beginning of a list

prepend(x,v) -- yields the list obtained by prepending x to the list v. Similarly if v is a sequence.

i1 : prepend( x, {a,b,c} )

o1 = {x, a, b, c}

o1 : List

See also:

  • append -- add to the end of a list
  • join -- join lists
  • Ways to use prepend :

  • prepend(Thing,BasicList)

  • [next][previous][up][top][index]
    search for: