IrcClient.kick

Kick users from channels in a single message.

channelUserPairs must be a range of $(STDREF typecons, Tuple) pairs of strings, where the first string is the name of a channel and the second string is the user to kick from that channel.

  1. void kick(char[] channel, char[] user)
  2. void kick(char[] channel, char[] user, char[] comment)
  3. void kick(char[] channel, Range users)
  4. void kick(char[] channel, Range users, char[] comment)
  5. void kick(Range channelUserPairs)
  6. void kick(Range channelUserPairs, char[] comment)
    class IrcClient
    void
    kick
    (
    Range
    )
    (,
    in char[] comment
    )
    if (
    isInputRange!Range &&
    isTuple!(ElementType!Range)
    &&
    ElementType!Range.length == 2
    &&
    allSatisfy!(isSomeString, ElementType!Range.Types)
    )

Meta