@datastructures-es6/core
Version:
Implementation of the most common data structures in Javascript
17 lines (15 loc) • 507 B
JavaScript
import { Array } from "./components/array/array.component.js";
import { LinkedList } from "./components/linked-list/linked-list.component.js";
import { Queue } from "./components/queue/queue.component.js";
import { Stack } from "./components/stack/stack.component.js";
/**
* @author André Fillype Silva <andrefillype10@gmail.com>
* @description Module to export all linear data structures in the project.
* @module linear-data-structures
*/
export {
Array,
LinkedList,
Queue,
Stack,
}