uniq

WebJar for uniq

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

uniq
Последняя версия

Последняя версия

1.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

uniq
WebJar for uniq
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/mikolalysenko/uniq

Скачать uniq

Имя Файла Размер
uniq-1.0.1.pom
uniq-1.0.1.jar 5 KB
uniq-1.0.1-sources.jar 22 bytes
uniq-1.0.1-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/uniq/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>uniq</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/uniq/
implementation 'org.webjars.npm:uniq:1.0.1'
// https://jarcasting.com/artifacts/org.webjars.npm/uniq/
implementation ("org.webjars.npm:uniq:1.0.1")
'org.webjars.npm:uniq:jar:1.0.1'
<dependency org="org.webjars.npm" name="uniq" rev="1.0.1">
  <artifact name="uniq" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='uniq', version='1.0.1')
)
libraryDependencies += "org.webjars.npm" % "uniq" % "1.0.1"
[org.webjars.npm/uniq "1.0.1"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

uniq

Removes all duplicates from an array in place.

Usage

First install using npm:

npm install uniq

Then use it as follows:

var arr = [1, 1, 2, 2, 3, 5]

require("uniq")(arr)
console.log(arr)

//Prints:
//
//  1,2,3,5
//

require("uniq")(array[, compare, sorted])

Removes all duplicates from a sorted array in place.

  • array is the array to remove items from
  • compare is an optional comparison function that returns 0 when two items are equal, and something non-zero when they are different. If unspecified, then the default equals will be used.
  • sorted if true, then assume array is already sorted

Returns: A reference to array

Time Complexity: O(array.length * log(array.length)) or O(array.length) if sorted

Why use this instead of underscore.uniq[ue]?

A few reasons:

  • This library updates the array in place without making an extra copy (and so it is faster for large arrays)
  • It also accepts a custom comparison function so you can remove duplicates from arrays containing object
  • It is more modular in the sense that it doesn't come with a bazillion other utility grab bag functions.

Credits

(c) 2013 Mikola Lysenko. MIT License

Версии библиотеки

Версия
1.0.1