static S snippetWithTitle_rev(S id) { id = formatSnippetID(id); ret getSnippetTitle(id) + " - " + id; } static S snippetWithTitle_rev(Snippet s) { ret s == null ? "-" : s.title + " - " + s.id; }