mirror of
https://github.com/neovim/neovim.git
synced 2026-04-26 09:14:15 +00:00
feat(lua): add Iter:unique() (#37592)
This commit is contained in:
@@ -10,13 +10,13 @@ end
|
||||
|
||||
--- @return string[]
|
||||
local function get_client_names()
|
||||
local client_names = vim
|
||||
return vim
|
||||
.iter(lsp.get_clients())
|
||||
:map(function(client)
|
||||
return client.name
|
||||
end)
|
||||
:unique()
|
||||
:totable()
|
||||
return vim.list.unique(client_names)
|
||||
end
|
||||
|
||||
--- @return string[]
|
||||
@@ -34,7 +34,8 @@ local function get_config_names()
|
||||
vim.list_extend(config_names, vim.tbl_keys(lsp.config._configs))
|
||||
|
||||
return vim
|
||||
.iter(vim.list.unique(config_names))
|
||||
.iter(config_names)
|
||||
:unique()
|
||||
--- @param name string
|
||||
:filter(function(name)
|
||||
return name ~= '*'
|
||||
|
||||
@@ -365,9 +365,11 @@ end
|
||||
--- Only the first occurrence of each value is kept.
|
||||
--- The operation is performed in-place and the input table is modified.
|
||||
---
|
||||
--- Accepts an optional `key` argument that if provided is called for each
|
||||
--- Accepts an optional `key` argument, which if provided is called for each
|
||||
--- value in the list to compute a hash key for uniqueness comparison.
|
||||
--- This is useful for deduplicating table values or complex objects.
|
||||
--- If `key` returns `nil` for a value, that value will be considered unique,
|
||||
--- even if multiple values return `nil`.
|
||||
---
|
||||
--- Example:
|
||||
--- ```lua
|
||||
@@ -385,6 +387,7 @@ end
|
||||
--- @param t T[]
|
||||
--- @param key? fun(x: T): any Optional hash function to determine uniqueness of values
|
||||
--- @return T[] : The deduplicated list
|
||||
--- @see |Iter:unique()|
|
||||
function vim.list.unique(t, key)
|
||||
vim.validate('t', t, 'table')
|
||||
local seen = {} --- @type table<any,boolean>
|
||||
|
||||
@@ -213,6 +213,57 @@ function ArrayIter:filter(f)
|
||||
return self
|
||||
end
|
||||
|
||||
--- Removes duplicate values from an iterator pipeline.
|
||||
---
|
||||
--- Only the first occurrence of each value is kept.
|
||||
---
|
||||
--- Accepts an optional `key` argument, which if provided is called for each
|
||||
--- value in the iterator to compute a hash key for uniqueness comparison. This is
|
||||
--- useful for deduplicating table values or complex objects.
|
||||
--- If `key` returns `nil` for a value, that value will be considered unique,
|
||||
--- even if multiple values return `nil`.
|
||||
---
|
||||
--- If a function-based iterator returns multiple arguments, uniqueness is
|
||||
--- checked based on the first return value. To change this behavior, specify
|
||||
--- `key`.
|
||||
---
|
||||
--- Examples:
|
||||
---
|
||||
--- ```lua
|
||||
--- vim.iter({ 1, 2, 2, 3, 2 }):unique():totable()
|
||||
--- -- { 1, 2, 3 }
|
||||
---
|
||||
--- vim.iter({ {id=1}, {id=2}, {id=1} })
|
||||
--- :unique(function(x)
|
||||
--- return x.id
|
||||
--- end)
|
||||
--- :totable()
|
||||
--- -- { {id=1}, {id=2} }
|
||||
--- ```
|
||||
---
|
||||
---@param key? fun(...):any Optional hash function to determine uniqueness of values.
|
||||
---@return Iter
|
||||
---@see |vim.list.unique()|
|
||||
function Iter:unique(key)
|
||||
local seen = {} --- @type table<any,boolean>
|
||||
|
||||
key = key or function(a)
|
||||
return a
|
||||
end
|
||||
|
||||
return self:filter(function(...)
|
||||
local hash = key(...)
|
||||
if hash == nil then
|
||||
return true
|
||||
elseif not seen[hash] then
|
||||
seen[hash] = true
|
||||
return true
|
||||
else
|
||||
return false
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
||||
--- Flattens a |list-iterator|, un-nesting nested values up to the given {depth}.
|
||||
--- Errors if it attempts to flatten a dict-like value.
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user