util/roster.lua

Tue, 20 Jul 2010 12:37:28 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Tue, 20 Jul 2010 12:37:28 +0100
changeset 3392
6e31b49c4ab8
parent 3359
69442c83602e
permissions
-rw-r--r--

util.iterators: Add skip() to skip the first n items of an iterator

module "roster"

local roster = {};
roster.__index = roster;

function new()
	return setmetatable({}, roster);
end

function roster:subscribers()
end

function roster:subscriptions()
end

function roster:items()
end

return _M;

mercurial