view doc/html/api/module/Irccd.Server/function/list.md @ 254:93a227277786

Irccd: various fixes for further cross-compilation
author David Demelier <markand@malikania.fr>
date Mon, 05 Sep 2016 12:53:13 +0200
parents 6635b9187d71
children 904ee87bc808
line wrap: on
line source

---
function: list
summary: "List all servers in a map."
synopsis: "table = Irccd.Server.list()"
returns: "the table of all servers."
---

## Example

````javascript
var table = Irccd.Server.list();

for (var name in table) {
    var server = table[name];

    /* Use server */
}
````