package email_message

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Email_message_kernelSource

Sourcetype t
include Ppx_compare_lib.Comparable.S with type t := t
include Ppx_hash_lib.Hashable.S with type t := t
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval create : headers:Headers.t -> raw_content:Email_message_kernel__.Email_raw_content.t -> t
Sourceval headers : t -> Headers.t
Sourceval set_headers : t -> Headers.t -> t
Sourceval modify_headers : t -> f:(Headers.t -> Headers.t) -> t
Sourceval raw_content : t -> Email_message_kernel__.Email_raw_content.t
Sourceval set_raw_content : t -> Email_message_kernel__.Email_raw_content.t -> t
Sourceval modify_raw_content : t -> f: (Email_message_kernel__.Email_raw_content.t -> Email_message_kernel__.Email_raw_content.t) -> t
Sourceval to_bigstring_shared : ?eol_except_raw_content:Lf_or_crlf.t -> t -> Bigstring_shared.t
Sourceval to_string_monoid : ?eol_except_raw_content:Lf_or_crlf.t -> t -> String_monoid.t

String-builder-like module. Small-to-no memory overhead when unparsed.

Sourceval of_string : string -> t

Convert from string, in compliance with the RFC 2822 standard (standard email format, e.g. .eml but not mbox)

Sourceval to_string : ?eol_except_raw_content:Lf_or_crlf.t -> t -> string

Convert to string, in compliance with the RFC 2822 standard (standard email format, e.g. .eml but not mbox)

Sourceval to_bigstring : ?eol_except_raw_content:Lf_or_crlf.t -> t -> Core.Bigstring.t
Sourceval of_bigstring : Core.Bigstring.t -> t
Sourceval of_bigbuffer : Core.Bigbuffer.t -> t
include Core.Comparable.S_plain with type t := t
include Base.Comparable.S with type t := t
include Base.Comparisons.S with type t := t
include Base.Comparisons.Infix with type t := t
Sourceval (>=) : t -> t -> bool
Sourceval (<=) : t -> t -> bool
Sourceval (=) : t -> t -> bool
Sourceval (>) : t -> t -> bool
Sourceval (<) : t -> t -> bool
Sourceval (<>) : t -> t -> bool
Sourceval equal : t -> t -> bool
Sourceval min : t -> t -> t
Sourceval max : t -> t -> t
Sourceval ascending : t -> t -> int

ascending is identical to compare. descending x y = ascending y x. These are intended to be mnemonic when used like List.sort ~compare:ascending and List.sort ~cmp:descending, since they cause the list to be sorted in ascending or descending order, respectively.

Sourceval descending : t -> t -> int
Sourceval between : t -> low:t -> high:t -> bool

between t ~low ~high means low <= t <= high

Sourceval clamp_exn : t -> min:t -> max:t -> t

clamp_exn t ~min ~max returns t', the closest value to t such that between t' ~low:min ~high:max is true.

Raises if not (min <= max).

Sourceval clamp : t -> min:t -> max:t -> t Base.Or_error.t
include Base.Comparator.S with type t := t
Sourcetype comparator_witness
Sourceval validate_lbound : min:t Core.Maybe_bound.t -> t Validate.check
Sourceval validate_ubound : max:t Core.Maybe_bound.t -> t Validate.check
Sourceval validate_bound : min:t Core.Maybe_bound.t -> max:t Core.Maybe_bound.t -> t Validate.check
Sourcemodule Map : sig ... end
Sourcemodule Set : sig ... end
include Core.Hashable.S_plain with type t := t
include Ppx_compare_lib.Comparable.S with type t := t
Sourceval compare : t -> t -> int
include Ppx_hash_lib.Hashable.S with type t := t
Sourceval hash_fold_t : Base.Hash.state -> t -> Base.Hash.state
Sourceval hashable : t Base.Hashable.t
Sourcemodule Table : sig ... end
Sourcemodule Hash_set : sig ... end
Sourcemodule Hash_queue : sig ... end
Sourcemodule Bigstring_shared : sig ... end
Sourcemodule Content : sig ... end

The cost depends on the encoding of the content and the main media type.

Sourcemodule Raw_content : sig ... end
Sourcemodule Simple : sig ... end
Sourcemodule Headers : sig ... end
Sourcemodule Mimestring : sig ... end
Sourcemodule Octet_stream : sig ... end
Sourcemodule String_monoid : sig ... end
Sourcemodule Lf_or_crlf : sig ... end
Sourcemodule Stable : sig ... end
Sourcemodule Private : sig ... end
OCaml

Innovation. Community. Security.