class Irc::UserList
A UserList is an ArrayOf Users We derive it from NetmaskList, which allows us to inherit any special NetmaskList method
Public Class Methods
Source
# File lib/rbot/irc.rb, line 1087 def initialize(ar=[]) super(ar) @element_class = User end
Create a new UserList, optionally filling it with the elements from the Array argument fed to it.
Calls superclass method
Irc::NetmaskList::new