functional-data-structure/finger-tree

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

Summary

Maintainability
A
0 mins
Test Coverage
import {Empty} from '../../3-tree/index.js';

export function from(M, iterable) {
    return new Empty(M).append(iterable);
}