package comby-kernel

  1. Overview
  2. Docs
A match engine for structural code search and replace that supports ~every language

Install

Dune Dependency

Authors

Maintainers

Sources

comby-kernel.1.7.0.tar.gz
md5=ee6556d8bd9b25ed0445ebe23862e48a
sha512=e6386c8ce5ef14bbcab2b0ead5b1edc39375438f56330d5f02e81e467afe6623a7e299f97f26008d77bbc62850c6dc63a7cbe5b81671b5183ff3adeee5946bb3

doc/comby-kernel.vangstrom/Vangstrom/BE/index.html

Module Vangstrom.BESource

Big endian parsers

Sourceval int16 : int -> unit t

int16 i accept two bytes that match the two lower order bytes of i and returns unit.

Sourceval int32 : int32 -> unit t

int32 i accept four bytes that match the four bytes of i and returns unit.

Sourceval int64 : int64 -> unit t

int64 i accept eight bytes that match the eight bytes of i and returns unit.

Sourceval any_int16 : int t
Sourceval any_int32 : int32 t
Sourceval any_int64 : int64 t

any_intN reads N bits and interprets them as big endian signed integers.

Sourceval any_uint16 : int t

any_uint16 reads 16 bits and interprets them as a big endian unsigned integer.

Sourceval any_float : float t

any_float reads 32 bits and interprets them as a big endian floating point value.

Sourceval any_double : float t

any_double reads 64 bits and interprets them as a big endian floating point value.

OCaml

Innovation. Community. Security.