package frama-c

  1. Overview
  2. Docs

doc/frama-c.kernel/Frama_c_kernel/Hash/index.html

Module Frama_c_kernel.Hash

This module provides hash functions.

  • since 33.0-Arsenic
val hash_iter : ?limit:int -> (('a -> unit) -> 'b -> unit) -> ('a -> int) -> 'b -> int

hash_iter iter hash x hashes a collection x given an iter function on this collection and a hash function on its elements.

  • parameter limit

    is the maximum number of elements used for the hash; if collections bigger than this size are given, the remaining elements are ignored. Defaults to 16.