Library CoqFFI.Extraction
Primitive Signed Integers
From CoqFFI Require Export Int.
Import IntExtraction.
Extract Inductive bool ⇒ "bool" [ "true" "false" ].
Extract Inlined Constant orb ⇒ "(||)".
Extract Inlined Constant andb ⇒ "(&&)".
Extract Inductive option ⇒ "option" [ "Some" "None" ].
Extract Inductive unit ⇒
unit [ "()" ].
Extract Inductive prod ⇒ "( * )" [ "" ].
Extract Inductive list ⇒ "list" [ "[]" "( :: )" ].
From CoqFFI Require Seq.
Import Seq.SeqExtraction.
From CoqFFI Require Result.
Import Result.ResultExtraction.
Exceptions
From CoqFFI Require Export Exn.
Import ExnExtraction.