Method code for $channel_db.search()

[Turn on line numbering]
arg channel;
var key;

if (type(channel) != 'symbol)
    key = .strip_key(channel);
else
    key = channel;
catch ~keynf, ~matchnf
    return (> .exact_match(key) <);
with
    throw(~keynf, "Unknown channel: " + channel);

// Created 13-Oct-1996 as a part of ColdCore, see: @help Credit

Tlon