package melange

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

Module Expression.OptionalCallSource

Sourcetype kind =
  1. | Optional
  2. | NonOptional
  3. | AssertNonnull
Sourceval pp_kind : Format.formatter -> kind -> unit
Sourceval show_kind : kind -> string
Sourcetype ('M, 'T) t = {
  1. call : ('M, 'T) Call.t;
  2. filtered_out : 'T;
  3. optional : kind;
}
Sourceval pp : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> Format.formatter -> ('M, 'T) t -> unit
Sourceval show : (Format.formatter -> 'M -> unit) -> (Format.formatter -> 'T -> unit) -> ('M, 'T) t -> string