package biocaml

  1. Overview
  2. Docs
The OCaml Bioinformatics Library

Install

Dune Dependency

Authors

Maintainers

Sources

v0.10.0.tar.gz
md5=497e3f2f7128a6ca347d66848da38a3d
sha512=4a76ebbafda3bc944afaff40d69791dfe153a0638ef5d7e6e1bc962b7f991d9545cd0af2d7930b39f8b31dbf067d0603cfa03d9b7a49396ab1ae452df47fd1f3

doc/biocaml.ez/Biocaml_ez/Lines/Buffer/index.html

Module Lines.Buffer

Buffer used to parse strings into lines.

type t

The buffer handle.

exception No_next_line
val make : ?filename:string -> unit -> t

Make a new empty buffer. The optional filename is used only for error reporting; it should be set to the name of the file, if any, from which you will feed the buffer.

val feed_line : t -> item -> unit

Feed the parser with a line.

val feed_string : t -> string -> unit

Feed the parser with an arbitrary string buffer.

val queued_lines : t -> int

Get the number of lines ready-to-use in the buffer/queue.

val is_empty : t -> bool

Tell if the parser's buffers are empty or not. For instance, when there is no more content to feed and next_line returns None, is_empty p = true means that the content did not end with a complete line.

val peek_line : t -> item option

Peek at the next line, without removing it from the buffer.

val next_line : t -> item option

Get the next line.

val next_line_exn : t -> item

Get the next line, but throw No_next_line if there is no line to return.

val current_position : t -> Biocaml_unix.Pos.t

Get the current position in the stream.

val contents : t -> item list * string option

Return any remaining lines and the unfinished string, without removing them from the buffer.

val empty : t -> unit

Empty the buffer. Subsequent call to contents will return ([], None).

OCaml

Innovation. Community. Security.