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

scan(BasicList,Function) -- apply a function to each element of a list

Synopsis:

  • Function: scan -- apply a function to each element
  • Input:
  • an instance of class BasicList.
  • an instance of class Function.
  • Output:
  • an instance of class Nothing.
  • scan(v,f) -- applies the function f to each element of the list v. The function values are discarded.

    i1 : scan({a,4,"George",2^100}, print)
    a
    4
    George
    1267650600228229401496703205376


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