UserMask

IRC user masks are generally in the form nick!ident@hostname. This struct exists for easy separation and manipulation of each piece of the mask. This also accepts cases where the ident and host are not present.

Constructors

this
this(string maskString)

Members

Functions

toHash
auto toHash()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
void toString(T sink)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

host
Nullable!string host;
ident
Nullable!string ident;
nickname
string nickname;

Meta