mirror of
https://github.com/neovim/neovim.git
synced 2025-10-26 12:27:24 +00:00
refactor(lua): remove deprecated features #28725
This commit is contained in:
@@ -1008,26 +1008,6 @@ function ListIter:enumerate()
|
||||
return self
|
||||
end
|
||||
|
||||
---@deprecated
|
||||
function Iter:nextback()
|
||||
error('Iter:nextback() was renamed to Iter:pop()')
|
||||
end
|
||||
|
||||
---@deprecated
|
||||
function Iter:peekback()
|
||||
error('Iter:peekback() was renamed to Iter:rpeek()')
|
||||
end
|
||||
|
||||
---@deprecated
|
||||
function Iter:skipback()
|
||||
error('Iter:skipback() was renamed to Iter:rskip()')
|
||||
end
|
||||
|
||||
---@deprecated
|
||||
function Iter:nthback()
|
||||
error('Iter:nthback() was removed, use Iter:nth() with negative index')
|
||||
end
|
||||
|
||||
--- Creates a new Iter object from a table or other |iterable|.
|
||||
---
|
||||
---@param src table|function Table or iterator to drain values from
|
||||
|
||||
Reference in New Issue
Block a user