functional-data-structure/finger-tree

View on GitHub
src/0-core/concatenate/prepend.js

Summary

Maintainability
A
0 mins
Test Coverage
import {_prepend} from '../_fast/index.js';

export function prepend(tree, iterable) {
    return _prepend(tree, Array.from(iterable));
}