Home Manual Reference Source

Overview

Installation

Can be managed using yarn, npm, or jspm.

yarn

yarn add @data-structure-algebra/circularly-linked-list

npm

npm install @data-structure-algebra/circularly-linked-list --save

jspm

jspm install npm:@data-structure-algebra/circularly-linked-list

Usage

:warning: The code requires regeneratorRuntime to be defined, for instance by importing regenerator-runtime/runtime.

First, require the polyfill at the entry point of your application

await import( 'regenerator-runtime/runtime.js' );
// or
import 'regenerator-runtime/runtime.js' ;

Then, import the library where needed

const cll = await import( '@data-structure-algebra/circularly-linked-list' ) ;
// or
import * as cll from '@data-structure-algebra/circularly-linked-list' ;

Examples

More examples in the test files.