Go to the first, previous, next, last section, table of contents.


dottedList

Function: list { [items] tail -> [list-of-items] }
file: 00-C-lists.muf
package: muf
status: alpha

The dottedList function constructs a List from a given set of arguments, with the given tail.

See section list.

It is currently implemented as:

:   dottedList { [] $ -> [] }

    -> result
    do{
	|length 0 = until
        |pop result cons -> result
    }

    result |push
;


Go to the first, previous, next, last section, table of contents.