![]() |
Boron 2.1.0
|
Functions | |
UBuffer * | ur_makePathCell (UThread *ut, const UCell *nodes, int size, UCell *cell) |
Initialize path cell and generate block if needed. | |
int | ur_pathResolve (UThread *ut, UBlockIt *pi, UCell *tmp, UCell **lastCell) |
Get a pointer to the last value that a path! refers to. | |
int | ur_pathSelectCells (const UCell *selC, UCell *dest) |
const UCell * | ur_pathSelect (UThread *ut, const UCell *selC, UCell *tmp, UCell **remain) |
Get a pointer to the last value that a select path! cell refers to. | |
UStatus | ur_setPath (UThread *ut, const UCell *path, const UCell *src) |
Set path. | |
Get a pointer to the last value that a path! refers to.
If the last path node is not a datatype that contains UCells then lastCell will be set to tmp.
pi | Path iterator. |
tmp | Cell to temporarily hold values for datatypes that don't contain UCells. |
lastCell | Set to the address of the cell holding the last value in the path or tmp. |
Get a pointer to the last value that a select path! cell refers to.
tmp | Cell to temporarily hold values for datatypes that don't contain UCells. |
remain | An expanded (UCell series) version of the remaining path is put at this address then the pointer is set to the end position. It must have enough space to hold two UCells. |
dest | Cells to fill with path nodes. Must have enough space to hold three UCells. |
Set path.
This copies src into the cell which the path refers to.
If any of the path words are unbound (or bound to the shared environment) then an error is generated and UR_THROW is returned.
path | Valid path cell. |
src | Source value to copy. |