Book Image

Mastering Immutable.js

By : Adam Boduch
Book Image

Mastering Immutable.js

By: Adam Boduch

Overview of this book

Immutable.js is a JavaScript library that will improve the robustness and dependability of your larger JavaScript projects. All aspects of the Immutable.js framework are covered in this book, and common JavaScript situations are examined in a hands-on way so that you gain practical experience using Immutable.js that you can apply across your own JavaScript projects. The key to building robust JavaScript applications using immutability is to control how data flows through your application, and how the side-effects of these flows are managed. Many problems that are difficult to pinpoint in large codebases stem from data that’s been mutated where it shouldn’t have been. With immutable data, you rule out an entire class of bugs. Mastering Immutable.js takes a practical, hands-on approach throughout, and shows you the ins and outs of the Immutable.js framework so that you can confidently build successful and dependable JavaScript projects.
Table of Contents (23 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

List intersections


Sets have an intersect() method because it's assumed that if you need to find the intersection of values, these values should be unique. This makes sense, but you don't have to convert your lists into sets just for the sake of finding intersecting values.

Reducing list intersections

You can intersect list values using the reduce() method. Let's create a function that will intersect the list values given to it:

const intersect = (...lists) => {
  const [head] = lists;
  const tail = Seq(lists.slice(1));

  return head.reduce((result, value) =>
    tail
      .map(list => list.includes(value))
      .includes(false) ?
        result : result.add(value),
    Set()
  );
};

The intersect() function accepts an arbitrary number of lists, using the rest parameter syntax (...). The first step is to get thehead and tail of these lists. The head constant represents the first list while the tail constant represents the remaining lists.

We'll use head as the list to iterate over...