Wšě protokole
Napohlad
To je kombinowany pohlad wšěch we Wikipediji wjedźenych protokolow. Móžeš pohlad wobmjezować, wuběrajo typ protokola, wužiwarske mjeno abo potrjechenu stronu.
- 31. měrca 2025, 13:28 2001:e60:9384:11b4::b27:c5b1 diskusija erstellte die Seite Modul:LoadData (nowa strona: local p = {} -- Finds the next key key <= or >= the given i. -- operator is ±1 local function findItemRange(data, i, operator) local bestIndex = nil i = i * operator for k, v in pairs(data) do local kop = type(k) == 'number' and k * operator if kop and kop <= i and (bestIndex == nil or kop > bestIndex * operator) then bestIndex = k end end if bestIndex then return data[bestIndex] else return nil end end local function load(da…)