printf.ml
base
base.base_internalhash_types
base.caml
base.md5
base.shadow_stdlib
1 2 3 4 5 6 7 open! Import0 include Caml.Printf (** failwith, invalid_arg, and exit accepting printf's format. *) let failwithf fmt = ksprintf (fun s () -> failwith s) fmt let invalid_argf fmt = ksprintf (fun s () -> invalid_arg s) fmt
1 2 3 4 5 6 7
open! Import0 include Caml.Printf (** failwith, invalid_arg, and exit accepting printf's format. *) let failwithf fmt = ksprintf (fun s () -> failwith s) fmt let invalid_argf fmt = ksprintf (fun s () -> invalid_arg s) fmt