package camomile

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

Source file unicodeString.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# 1 "Camomile/public/unicodeString.ml"
(* Copyright (C) 2002, 2003 Yamagata Yoriyuki. distributed with LGPL *)

(* This library is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Lesser General Public License *)
(* as published by the Free Software Foundation; either version 2 of *)
(* the License, or (at your option) any later version. *)

(* As a special exception to the GNU Library General Public License, you *)
(* may link, statically or dynamically, a "work that uses this library" *)
(* with a publicly distributed version of this library to produce an *)
(* executable file containing portions of this library, and distribute *)
(* that executable file under terms of your choice, without any of the *)
(* additional requirements listed in clause 6 of the GNU Library General *)
(* Public License. By "a publicly distributed version of this library", *)
(* we mean either the unmodified Library as distributed by the authors, *)
(* or a modified version of this library that is distributed under the *)
(* conditions defined in clause 3 of the GNU Library General Public *)
(* License. This exception does not however invalidate any other reasons *)
(* why the executable file might be covered by the GNU Library General *)
(* Public License . *)

(* This library is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *)
(* Lesser General Public License for more details. *)

(* You should have received a copy of the GNU Lesser General Public *)
(* License along with this library; if not, write to the Free Software *)
(* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *)
(* USA *)

(* You can contact the authour by sending email to *)
(* yoriyuki.y@gmail.com *)

(** Signature for Unicode strings.
    {!UText}, {!XString}, {!UTF8}, {!UTF16}, {!UCS4}
    have matched signatures to UStorage
    and satisfy the semantics described below.  If users want to supply
    their own Unicode strings, please design the module with the
    following signature and properties. *)

module type Type = sig
  (** The type of string. *)
  type t

  (** [get t i] : [i]-th character of the storage.*)
  val get : t -> int -> UChar.t

  (** [init len f] creates a new storage.
      the returned storage has length [len], its nth-element is [f n].
      [f] is called with integers [0 ... len - 1], only once for each integer.
      The call is in the increasing order f 0, f 1, f 2, ... *)
  val init : int -> (int -> UChar.t) -> t

  (** The number of Unicode characters in the storage *)
  val length : t -> int

  (** locations in storages.*)
  type index

  (** [look t i] : The character in the location [i] of [t].*)
  val look : t -> index -> UChar.t

  (** [nth t n] : the location of the [n]-th character in [t].*)
  val nth : t -> int -> index

  (** [next x i, prev x i] :
      The operation is valid if [i] points the valid element, i.e. the
      returned value may point the location beyond valid elements by one.
      If [i] does not point a valid element, the results are unspecified. *)

  val next : t -> index -> index
  val prev : t -> index -> index

  (* [out_of_range t i] tests whether [i] is inside of [t]. *)
  val out_of_range : t -> index -> bool

  val iter : (UChar.t -> unit) -> t -> unit

  (* Code point comparison *)
  val compare : t -> t -> int

  (** The location of the first character in the storage. *)
  val first : t -> index

  (** The location of the last character in the storage. *)
  val last : t -> index

  (** [move t i n] :
      if [n] >= 0, then returns [n]-th character after [i] and
      otherwise returns -[n]-th character before [i].
      If there is no such character, or [i] does not point
      a valid character, the result is unspecified. *)
  val move : t -> index -> int -> index

  (** [compare_index t i j] returns
      a positive integer if [i] is the location placed after [j] in [t],
      0 if [i] and [j] point the same location, and
      a negative integer if [i] is the location placed before [j] in [t]. *)
  val compare_index : t -> index -> index -> int

  (** Character buffers.  Similar to Buffer. *)
  module Buf : sig
    type buf

    (** [create n] creates the buffer.  [n] is used to determine
        the initial size of the buffer.  The meaning of [n] differs from
        modules to modules. *)
    val create : int -> buf

    val contents : buf -> t
    val clear : buf -> unit
    val reset : buf -> unit
    val add_char : buf -> UChar.t -> unit
    val add_string : buf -> t -> unit
    val add_buffer : buf -> buf -> unit
  end
end
OCaml

Innovation. Community. Security.