Next: Package License, Previous: version, Up: Top [Contents][Index]
The following syntactic bindings are exported by the library (mmck fectors).
Return a fector of the specified size, which must be a non–negative integer. If the fill parameter is given, the locations of the fector are initialised to that object, otherwise their initial values are unspecified.
Return a fector whose initial values are given as arguments.
Return #t if a given object is a fector, #f otherwise.
Return a non–negative integer representing the number of items that are stored in fector.
Return a new fector of the given size, a non–negative integer, where each item is initialised to the value of the given function index->obj applied to its index.
Return the item associated with the given index in fector. If index is outside the range:
0 <= index < (fector-length fector)
then an error is raised.
Return a new fector equivalent to fector except the given index which is associated to item. If index is outside the range:
0 <= index < (fector-length fector)
then an &assertion is raised.
Return a fector initialised with the contents of the given list.
Return a list containing the items in fector.
Compare two fectors item by item: return #t if they are equal, otherwise return #f. For
the comparison use the function item=, which defaults to eqv?.
Next: Package License, Previous: version, Up: Top [Contents][Index]
This document describes version 0.6.0-devel.1 of MMCK Fectors.