返回介绍

uniq

发布于 2019-05-31 13:13:02 字数 2375 浏览 962 评论 0 收藏 0

Creates a new sequence with every unique element from this one appearing exactly once (i.e., with duplicates removed).

Signature

Sequence.uniq = function(keyFn) { /*...*/ }
Sequence.uniq = function uniq(keyFn) {
  return new UniqueSequence(this, keyFn);
}
NameType(s)Description
keyFnFunction?

An optional function to produce the key for each object. This key is then tested for uniqueness as opposed to the object reference.

returnsSequence

The new sequence.

Examples

Lazy([1, 2, 2, 3, 3, 3]).uniq() // sequence: [1, 2, 3]
Lazy([{ name: 'mike' }, 
{ name: 'sarah' }, 
{ name: 'mike' }
]).uniq('name')
// sequence: [{ name: 'mike' }, { name: 'sarah' }]

Benchmarks

function randomOf(array) {
  return function() {
return array[Math.floor(Math.random() * array.length)];
  };
}

var mostUnique = Lazy.generate(randomOf(_.range(100)), 100).toArray(),
someUnique = Lazy.generate(randomOf(_.range(50)), 100).toArray(),
mostDupes  = Lazy.generate(randomOf(_.range(5)), 100).toArray();

Lazy(mostUnique).uniq().each(Lazy.noop) // lazy - mostly unique elements
Lazy(someUnique).uniq().each(Lazy.noop) // lazy - some unique elements
Lazy(mostDupes).uniq().each(Lazy.noop)  // lazy - mostly duplicate elements
_.each(_.uniq(mostUnique), _.noop)      // lodash - mostly unique elements
_.each(_.uniq(someUnique), _.noop)      // lodash - some unique elements
_.each(_.uniq(mostDupes), _.noop)       // lodash - mostly duplicate elements
Implementationmostly unique elementssome unique elementsmostly duplicate elements
lazy
lodash

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文