Pumunta sa nilalaman

Lahat ng mga talaan

Pinagsamang mga talaan sa Wikipedia. Maaaring paikliin ang nakikita sa pamamagitan ng pagpili ng uri ng tala, tagagamit o apektadong pahina.

Mga tala
  • 02:35, 14 Hulyo 2021 Jojit fb usapan ambag created page Module:Convert/wikidata (Bagong pahina: -- Functions to access Wikidata for Module:Convert. local Collection = {} Collection.__index = Collection do function Collection:add(item) if item ~= nil then self.n = self.n + 1 self[self.n] = item end end function Collection:join(sep) return table.concat(self, sep) end function Collection:remove(pos) if self.n > 0 and (pos == nil or (0 < pos and pos <= self.n)) then self.n = self.n - 1 return table.remove(self, pos) end end function Collection:...)