package irc-client
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
IRC client library - core functionality
Install
dune-project
Dependency
Authors
Maintainers
Sources
irc-client.0.6.1.tar.gz
sha256=4933418355cde3107bc39912ac4addf603adb6ea3c5c3119c41596848de9b6d0
md5=8de431994ea6c0a066ddd9e822d22f96
doc/src/irc-client/irc_transport.ml.html
Source file irc_transport.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28module type IO = sig type 'a t val (>>=) : 'a t -> ('a -> 'b t) -> 'b t val return : 'a -> 'a t type file_descr type inet_addr type config val open_socket : ?config:config -> inet_addr -> int -> file_descr t val close_socket : file_descr -> unit t val read : file_descr -> Bytes.t -> int -> int -> int t val write : file_descr -> Bytes.t -> int -> int -> int t val read_with_timeout : timeout:int -> file_descr -> Bytes.t -> int -> int -> int option t val gethostbyname : string -> inet_addr list t val iter : ('a -> unit t) -> 'a list -> unit t val catch : (unit -> 'a t) -> (exn -> 'a t) -> 'a t val sleep : int -> unit t val time : unit -> float val pick : ('a t list -> 'a t) option end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>