12345678910111213141516 |
- /**
- * Copyright (c) 2017 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author David Sehnal <david.sehnal@gmail.com>
- */
- import { Interval } from './int/interval';
- import { OrderedSet } from './int/ordered-set';
- import { Segmentation } from './int/segmentation';
- import { SortedArray } from './int/sorted-array';
- import { IntTuple as Tuple } from './int/tuple';
- import { LinkedIndex } from './int/linked-index';
- import { IntMap } from './int/map';
- import { Iterator } from './iterator';
- export { Interval, OrderedSet, Segmentation, SortedArray, Tuple, LinkedIndex, IntMap, Iterator };
|