package mopsa

  1. Overview
  2. Docs
MOPSA: A Modular and Open Platform for Static Analysis using Abstract Interpretation

Install

Dune Dependency

Authors

Maintainers

Sources

mopsa-analyzer-v1.0.tar.gz
md5=9f673f79708b44a7effb3b6bb3618d2c
sha512=cb91cb428e43a22f1abbcb8219710d0c10a5b3756d0da392d4084b3b3a6157350776c596983e63def344f617d39964e91f244f60c07958695ee5c8c809a9f0f4

doc/utils_core/Utils_core/Compare/index.html

Module Utils_core.CompareSource

Lift comparison to composed data-structure (pairs, lists, etc.).

Sourceval compose : (unit -> int) list -> int

compose cl applies a list of comparison functions cl in sequence and stops when encountering the first non-zero result.

Sourceval list : ('a -> 'a -> int) -> 'a list -> 'a list -> int

list p lifts the 'a compare function p to 'a list

Sourceval pair : ('a -> 'a -> int) -> ('b -> 'b -> int) -> ('a * 'b) -> ('a * 'b) -> int

pair p lifts the 'a compare function p, 'b compare function q to 'a * 'b

Sourceval triple : ('a -> 'a -> int) -> ('b -> 'b -> int) -> ('c -> 'c -> int) -> ('a * 'b * 'c) -> ('a * 'b * 'c) -> int

triple p lifts the 'a compare function p, 'b compare function q, 'c compare function r to 'a * 'b * 'c

Sourceval quadruple : ('a -> 'a -> int) -> ('b -> 'b -> int) -> ('c -> 'c -> int) -> ('d -> 'd -> int) -> ('a * 'b * 'c * 'd) -> ('a * 'b * 'c * 'd) -> int
Sourceval option : ('a -> 'a -> int) -> 'a option -> 'a option -> int

option p lifts p: 'a -> 'a -> int to 'a option -> 'a option -> int

OCaml

Innovation. Community. Security.