package binsec

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Binsec_sse.OutputSource

Sourcetype format =
  1. | Bin
  2. | Dec
  3. | Hex
  4. | Ascii
Sourcetype ('var, 'expr) t =
  1. | Model
  2. | Formula
  3. | Slice of ('expr * string) list
  4. | Value of format * 'expr
  5. | Stream of 'var
  6. | String of {
    1. array : string option;
    2. offset : 'expr;
    3. size : 'expr option;
    }
Sourceval format_str : format -> string
Sourceval pp : (Format.formatter -> 'var -> unit) -> (Format.formatter -> 'expr -> unit) -> Format.formatter -> ('var, 'expr) t -> unit