Coder Social home page Coder Social logo

recursive-reducer's Introduction

recursive-reducer

recursive-reducer on npm

Motivation

The method reduce in Array can be used to implement map, filter, count, and other generally useful operations. It is a core operation which we extend to objects. There are two versions: non-recursive recordReducer and recursive reducers. The recursive reducer has factory methods recursiveMapper and recursiveMapperReducer which, roughly speaking, are useful for "copy-like" operations and "summarization" operations respectively

Non-recursive

Recall Array.reduce can be used to do various summaries or map-and-copy operations on lists. In the same way, objReducer can be used to do such operations on an object.

Example 1: Finding the minimum value...

...of an array, using Array.reduce

const minOf = (arr: number[]) => arr.reduce(
  (prev: number, current: number) => Math.min(prev, current),
  Number.POSITIVE_INFINITY);
expect(minOf([10, 12, 90])).toBe(10);
expect(minOf([-30, 52, 23.4])).toBe(-30);

...of a record, using recordReducer

import {recordReducer} from 'index'; // 'recursive-reducer'

const minOf = recordReducer(
  (prev: number, current: number | undefined) => Math.min(prev, current!),
  () => Number.POSITIVE_INFINITY);
expect(minOf({a: 10, b: 12, c: 90})).toBe(10);
expect(minOf({a: -30, b: 52, c: 23.4})).toBe(-30);

Example 2: Async map (to boolean) and reduce (with &&)...

...of an array, using Array.reduce

const allEven = async (arr: number[]) => await arr.reduce(
  async (prev: Promise<boolean>, current: number) => (await prev) && current % 2 === 0,
  Promise.resolve(true));
expect(await allEven([])).toBe(true);
expect(await allEven([3])).toBe(false);
expect(await allEven([3, 5])).toBe(false);
expect(await allEven([4, 6])).toBe(true);
expect(await allEven([4, 7])).toBe(false);

...of a record, using recordReducer

import {recordReducer} from 'index'; // 'recursive-reducer'

const allEven = recordReducer(
  async (prev: Promise<boolean>, current: number | undefined) => (await prev) && current! % 2 === 0,
  () => Promise.resolve(true));
expect(await allEven({})).toBe(true);
expect(await allEven({a: 3})).toBe(false);
expect(await allEven({a: 3, b: 5})).toBe(false);
expect(await allEven({a: 4, b: 6})).toBe(true);
expect(await allEven({a: 4, b: 7})).toBe(false);

Recursive

TODO: fill in examples.

recursive-reducer's People

Watchers

Justin Thomas avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.