Previous: Weak hash tables, Up: Weak References
Weak vectors are mainly useful in Guile's implementation of weak hash tables.
Return a weak vector with size elements. If the optional argument fill is given, all entries in the vector will be set to fill. The default value for fill is the empty list.
Construct a weak vector from a list:
weak-vector
uses the list of its arguments whilelist->weak-vector
uses its only argument l (a list) to construct a weak vector the same waylist->vector
would.