functional-data-structure/finger-tree

View on GitHub
src/0-core/split/deepL.js

Summary

Maintainability
A
0 mins
Test Coverage
import {Deep} from '../../3-tree/index.js';
import {delay} from '../../4-lazy/index.js';
import {_from_digit, _digit} from '../_fast/index.js';

/**
 * @param {Measure} M
 * @param {Array} left
 * @param {FingerTree} middle
 * @param {Digit} right
 */
export function deepL(M, left, middle, right) {
    if (left.length === 0) {
        if (middle.isEmpty()) return _from_digit(M, right);

        return new Deep(
            M,
            middle.head().digit(),
            delay(() => middle.tail()),
            right,
        );
    }

    return new Deep(M, _digit(left), middle, right);
}