package memcpy
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
safe and efficient copying between blocks of memory
Install
dune-project
Dependency
Authors
Maintainers
Sources
0.3.0.tar.gz
sha256=fd8921e6546aa7d80a2c73a94aabfb8ccb5aa63fd69e3c58d9b87eacfa7dfd22
md5=85428d6731d6a3b1e329c387515a0cce
Description
There are several ways of storing and accessing blocks of memory in an OCaml program, including
- bytes and string values for mutable and immutable strings that reside in the OCaml heap
- bigarray values for reference-counted blocks that reside in the OCaml heaps
- Ctypes ptr values that can be used to address arbitrary addresses using typed descriptions of the memory layout.
- Ctypes array values that provide bounds-checked access to ptr-addressed memory.
The Memcpy module provides functions for safely and efficiently copying blocks of memory between these different representations.
Dependencies (4)
-
ocamlbuild
build -
ocamlfind
build -
ctypes
>= "0.12.0" -
ocaml
>= "4.01.0"
Used by
None
Conflicts (1)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page