Method code for $group.parse_group()

[Turn on line numbering]
arg value, @args;
var action, list, item, out;

if (value && value[1] in ["+", "-"]) {
    if (value[1] == "-")
        action = 'del;
    else
        action = 'add;
    list = [substr(value, 2)];
} else {
    action = 'set;
    list = value.explode_english_list();
}
out = hash item in (list) to ([(> $object_lib.to_dbref(item) <), 1]);
if (action == 'set)
    return [action, out];
else
    return [action, dict_keys(out)[1]];

["// Created 01-Sep-1998 as a part of ColdCore, see: @help Credit"]

the Cold Dark