2023-04-09 05:35:35 +00:00
|
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-03-30 08:33:56 +00:00
|
|
|
---@meta
|
|
|
|
|
2022-04-01 12:51:01 +00:00
|
|
|
---@return integer length
|
2022-03-30 08:33:56 +00:00
|
|
|
function SPlayerList:length()end
|
|
|
|
|
2022-03-31 05:29:23 +00:00
|
|
|
---@param e fk.ServerPlayer
|
2022-03-30 08:33:56 +00:00
|
|
|
function SPlayerList:append(e)end
|
|
|
|
|
2022-03-31 05:29:23 +00:00
|
|
|
---@param e fk.ServerPlayer
|
2022-03-30 08:33:56 +00:00
|
|
|
---@return boolean
|
|
|
|
function SPlayerList:contains(e)end
|
|
|
|
|
2022-04-01 12:51:01 +00:00
|
|
|
---@param index integer
|
2023-12-03 11:35:14 +00:00
|
|
|
---@return fk.ServerPlayer
|
2022-03-30 08:33:56 +00:00
|
|
|
function SPlayerList:at(index)end
|
|
|
|
|
|
|
|
function SPlayerList:first()end
|
|
|
|
function SPlayerList:last()end
|
|
|
|
function SPlayerList:isEmpty()end
|
|
|
|
function SPlayerList:removeAt(index)end
|
|
|
|
function SPlayerList:removeAll()end
|
|
|
|
function SPlayerList:indexOf(e)end
|