Ramda 之 without()

栏目: JavaScript · 发布时间: 5年前

内容简介:若要找出第一個 Array 不在第二個 Array 的 Element,我們會使用VS Code 1.33.1Quokka 1.0.209

若要找出第一個 Array 不在第二個 Array 的 Element,我們會使用 difference() ,若要找出第二個 Array 不在第一個 Array 的 Element 呢 ?

Version

VS Code 1.33.1

Quokka 1.0.209

Ramda 0.26.1

Functional

import { flip, difference } from 'ramda';

let first = [1, 3, 5, 7];
let second = [1, 4, 7];

let without = flip(difference);
console.log(without(first, second));

想知道 second array 哪些 element 不存在於 first array,,若不知道 Ramda 提供了 without() ,其實也可以由 difference()flip() 組合出來。

Ramda 之 without()

without()

Value

import { without } from 'ramda';

let first = [1, 3, 5, 7];
let second = [1, 4, 7];

console.log(without(first, second));

其實 Ramda 已經提供了 without() ,可直接使用。

without()

[a] → [a] → [a]

回傳第二個 array 不存在於第一個 array 部分

Ramda 之 without()

Object

import { without } from 'ramda';

let first = [
  { firstName: 'Kevin', lastName: 'Yang'},
];

let second = [
  { firstName: 'Sam',   lastName: 'Xiao'},
  { firstName: 'Kevin', lastName: 'Yang'},
  { firstName: 'Jimmy', lastName: 'Huang'},
]

console.dir(without(first, second));

second array 的 element 為 object,想得知不存在於 first array 的 object 有哪些, without() 依然適用。

ECMAScript 的 === ,對於 object 是 reference equality,但以處理 data 角度而言,這並沒有實質用處,而 without() 比較的是 value equality,也就是 property 相等,就視為兩個 object 相等,這在實務上非常有用

Ramda 之 without()

Conclusion

  • Ramda 並沒有如同 differenceWith() 提供 withoutWith() ,但也可組合 flip()differenceWith() 成為 withoutWith()
  • without() 可輕易找出兩個 array 不重複部分,尤其對於 object 是比較其 value equality,而不是 reference equality,非常實用

Reference

Ramda , without()

Ramda , difference()

Ramda , flip()


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Squid: The Definitive Guide

Squid: The Definitive Guide

Duane Wessels / O'Reilly Media / 2004 / $44.95 US, $65.95 CA, £31.95 UK

Squid is the most popular Web caching software in use today, and it works on a variety of platforms including Linux, FreeBSD, and Windows. Squid improves network performance by reducing the amount of......一起来看看 《Squid: The Definitive Guide》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具