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(in char[] channel, in char[] user)
  2. void kick(in char[] channel, in char[] user, in char[] comment)
  3. void kick(in char[] channel, Range users)
  4. void kick(in char[] channel, Range users, in char[] comment)
  5. void kick(Range channelUserPairs)
    class IrcClient
    void
    kick
    (
    Range
    )
    if (
    isInputRange!Range &&
    isTuple!(ElementType!Range)
    &&
    ElementType!Range.length == 2
    &&
    allSatisfy!(isSomeString, ElementType!Range.Types)
    )
  6. void kick(Range channelUserPairs, in char[] comment)

Meta