| Server IP : 82.208.35.60 / Your IP : 216.73.217.103 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/textproc/ocaml-csv/files/ |
Upload File : |
--- src/csv.mli.orig 2010-06-14 11:17:06 UTC
+++ src/csv.mli
@@ -37,7 +37,7 @@ type t = string list list
(** The most basic input object for best interoperability. *)
class type in_obj_channel =
object
- method input : string -> int -> int -> int
+ method input : bytes -> int -> int -> int
(** [input buf ofs len] reads up to [len] octets from the channel
and puts them in the substring [buf.[ofs .. ofs+len-1]].
Returns the number of octets actually read (and stored). When
@@ -52,7 +52,7 @@ end
(** The most basic output object for best interoperability. *)
class type out_obj_channel =
object
- method output : string -> int -> int -> int
+ method output : bytes -> int -> int -> int
(** [output s ofs len] writes up to [len] bytes of the substring
[s.[ofs .. ofs+len-1]]. Return the number of bytes actually
written. When the channel is non-blocking, and there are