package camlimages

  1. Overview
  2. Docs
Image processing library

Install

Dune Dependency

Authors

Maintainers

Sources

camlimages-5.0.3.tar.bz2
sha256=b8203da78a9733488e40fafccfafb874c9ebafd8a5f1fa1d9a46ae2ac241e97a
md5=7dd5aa1944d01d2e908d4caa1e1bba78

doc/camlimages.core/Util/index.html

Module UtilSource

Bytes and Strings

In 4.02.0, s.[i] <- c becomes deprecated and this is very frustrating for CamlImages.

We introduce (<<) and replace them by s << i & c.

Sourceval (&) : ('a -> 'b) -> 'a -> 'b
Sourceval (<<) : bytes -> int -> char -> unit

equivalent with Bytes.set

Sourceval (<<!) : bytes -> int -> char -> unit

equivalent with Bytes.unsafe_set

Sourceval range_check : bytes -> int -> int -> unit

range_check bs from to_ raises Invalid_argument "index out of bounds" when from and to_ are invalid range for bs.

Sourceval (>@!) : 'a array -> int -> 'a

equivalent with Array.unsafe.get

Sourceval (@%) : bytes -> int -> int

s @% p = Char.code @@ Bytes.get s p

OCaml

Innovation. Community. Security.