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


btreeSet

Function: btreeSet { btree key val -> newbtree }
file: job.t
package: muf
status: alpha

This function adds the given key val pair to the given btree, and returns the resulting newbtree, which may or may not be the same as the given btree, depending on whether the root node had to split (or the btree was initially empty).

(Keeping track of changing values of btree is the price one pays for working with the low level routines instead of having an object keep track of it for you.)


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