package bap-std
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=9c126781385d2fa9b8edab22e62b25c70bf2f99f6ec78abb7e5e36d63cfa4174
md5=5abd9b3628b43f797326034f31ca574f
doc/bap/Bap/Std/Memory/With_error/index.html
Module Memory.With_error
iterators lifter to the Or_error monad
fold ~word_size ~init ~f t folds over elements of t, so a result is f (... (f (f a elt_1) elt_2) ...) elt_n
iter ~word_size ~f t applies f to elements of t
foldi ~word_size ~init ~f t is like fold, but also passes an address to the f
iteri ~word_size ~f t is like iter, but also passes an address to the f
exists ~word_size ~f t checks if at least one element of t satisfies the predicate f
for_all ~word_size ~f t checks if all elements of t satisfies the predicate f
count ~word_size ~f t is the number of elements in t that satisfies the predicate f.
find_if ~word_size ~f t returns the first element of t that satisfies the predicate p or None if no elements satisfied