package irc-client
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
IRC client library - core functionality
Install
dune-project
Dependency
Authors
Maintainers
Sources
irc-client.0.6.1.tar.gz
sha256=4933418355cde3107bc39912ac4addf603adb6ea3c5c3119c41596848de9b6d0
md5=8de431994ea6c0a066ddd9e822d22f96
doc/irc-client/Irc_message/index.html
Module Irc_messageSource
IRC message parsing.
Source
type command = | PASS of string| NICK of string| USER of string list(*see rfc
*)| OPER of string * string(*name * password
*)| MODE of string * string(*nick * mode string
*)| QUIT of string(*quit message
*)| SQUIT of string * string(*server * comment
*)| JOIN of string list * string list(*channels * key list
*)| JOIN0(*join 0 (parts all channels)
*)| PART of string list * string(*channels * comment
*)| TOPIC of string * string(*chan * topic
*)| NAMES of string list(*channels
*)| LIST of string list(*channels
*)| INVITE of string * string(*nick * chan
*)| KICK of string list * string * string(*channels * nick * comment
*)| PRIVMSG of string * string(*target * message
*)| NOTICE of string * string(*target * message
*)| PING of string * string| PONG of string * string| Other of string * string list(*other cases
*)
A type representing an IRC command, following RFC 2812
Constructors
Printing
Parsing
Low level Functions -- testing
Exposed for testing - not intended for use.
Exposed for testing - not intended for use.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page