Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2018-08-13 14:48:52 +03:00
parent 8667ece446
commit 469372fa6f

18
diff.js
View File

@ -614,19 +614,17 @@ object.makeConstructor('OF', Object.assign(new LogicType(), {
// // number - array key // // number - array key
// // NOTE: this is actually not different // // NOTE: this is actually not different
// // from a string... // // from a string...
// // [ // // [<key>, <key>]
// // null | index | [index, length], // // - a set of 2 keys for A and B respectively,
// // null | index | [index, length], // // <key> can be one of:
// // ] // // null - item does not exist.
// // - a set of 2 keys for A and B respectively // // index - item index.
// // if one of the array items in undefined or // // [index, length] - item is a sub-array and
// // null then it means that the item does not // // will replace a section
// // exist in the corresponding array... // // of length length.
// // if both of the array items are arrays it // // if both of the array items are arrays it
// // means that we are splicing array sections // // means that we are splicing array sections
// // instead of array elements... // // instead of array elements...
// // length indicates the size of the spliced
// // out section...
// // XXX revise docs... // // XXX revise docs...
// path: [<key>, ...], // path: [<key>, ...],
// //