Ramda 之 eqBy()

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

内容简介:Ramda 有些 Function 很少直接使用,而是用來產生 Predicate,VS Code 1.33.1Quokka 1.0.212

Ramda 有些 Function 很少直接使用,而是用來產生 Predicate, eqBy() 就是其中之一。

Version

VS Code 1.33.1

Quokka 1.0.212

Ramda 0.26.1

eqBy()

eqBy()

(a → b) → a → a → Boolean

若兩 value 經過 function 轉換後,使用 equals() 比較後相等,則回傳 true ,否則回傳 false

(a -> b) :傳入要轉換的 function

a :要比較的 value

a :要比較的 value

Boolean :轉換後經過 equals() 比較,相等則回傳 true ,否則回傳 false

var eqBy = _curry3(function eqBy(f, x, y) {
  return equals(f(x), f(y));
});
export default eqBy;

eqBy() 若由官網解釋,可能很難了解,但若由其 source code 則很容易體會。

不過 eqBy() 通常很少直接拿來使用,而是用在產生其他 function 的 predicate。

Predicate

import { uniqWith } from 'ramda';

let data = [1, 2, 3, -1];

// fn :: ((a, a) -> Boolean) -> [a] -> [a]
let fn = pred => uniqWith(pred);

console.log(fn((x, y) => Math.abs(x) === Math.abs(y))(data));

data 中包含 1-1 ,若 1-1 均視為相同而不想重複顯示,也就是我們希望結果只顯示 [1, 2, 3]

若使用 uniqWith() ,我們會提供 predicate: (x, y) => Math.abs(x) === Math.abs(y)

Ramda 之 eqBy()

Point-free

import { uniqWith, eqBy } from 'ramda';

let data = [1, 2, 3, -1];

// fn :: ((a, a) -> Boolean) -> [a] -> [a]
let fn = pred => uniqWith(pred);

console.log(fn(eqBy(Math.abs))(data));

由於 xy 同時經過 Math.abs() 運算,因此適合使用 eqBy(Math.abs) 產生 predicate 使其 point-free。

Ramda 之 eqBy()


以上所述就是小编给大家介绍的《Ramda 之 eqBy()》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

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

Data Structures and Algorithms in Python

Data Structures and Algorithms in Python

Michael T. Goodrich、Roberto Tamassia、Michael H. Goldwasser / John Wiley & Sons / 2013-7-5 / GBP 121.23

Based on the authors' market leading data structures books in Java and C++, this book offers a comprehensive, definitive introduction to data structures in Python by authoritative authors. Data Struct......一起来看看 《Data Structures and Algorithms in Python》 这本书的介绍吧!

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

多种字符组合密码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

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

HSV CMYK互换工具