Home Reference Source

src/array/arrayutils/index.js

// jshint undef:true
// jshint unused:true
/*
Copyright (c) 2020, Nurul Choudhury
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
import _newArray from './newArray';
export const newArray = _newArray;

import _last from './last';
export const last = _last;

import _arrOf from './arrOf';
export const arrOf = _arrOf;

import _arrHash from './arrHash';
export const arrHash = _arrHash;

import _arrRemove from './arrRemove';
export const arrRemove = _arrRemove;

import _arrSplit from './arrSplit';
export const arrSplit = _arrSplit;

import _arrZip from './arrZip';
export const arrZip = _arrZip;

import _arrConcat from './arrConcat';
export const arrConcat = _arrConcat;

import _arrDiff from './arrDiff';
export const arrDiff = _arrDiff;

import _arrUnion from './arrUnion';
export const arrUnion = _arrUnion;

import _arrIntersect from './arrIntersect';
export const arrIntersect = _arrIntersect;

import _xor from './xor';
export const xor = _xor;

import _redim from './redim';
export const redim = _redim;

import _vecAdd from './vecAdd';
export const vecAdd = _vecAdd;

import _arrCurry from './arrCurry';
export const arrCurry = _arrCurry;

import _arrDedup from './arrDedup';
export const arrDedup = _arrDedup;

import _safeDedup from './safeDedup';
export const safeDedup = _safeDedup;

import _arrSum from './arrSum';
export const arrSum = _arrSum;

import _arrMin from './arrMin';
export const arrMin = _arrMin;

import _arrMax from './arrMax';
export const arrMax = _arrMax;

import _arrCount from './arrCount';
export const arrCount = _arrCount;

import _arrMean from './arrMean';
export const arrMean = _arrMean;

export * from './arrDistinct';
export * from './arrCountVal';
export * from './setHash';
export * from './zipToDict';
export * from './filterIX';