src/HOL/Library/Code_Char.thy
changeset 68028 1f9f973eed2a
parent 68027 64559e1ca05b
child 68029 df9044efd054
child 68031 eda52f4cd4e4
--- a/src/HOL/Library/Code_Char.thy	Tue Apr 24 14:17:57 2018 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,96 +0,0 @@
-(*  Title:      HOL/Library/Code_Char.thy
-    Author:     Florian Haftmann
-*)
-
-section \<open>Code generation of pretty characters (and strings)\<close>
-
-theory Code_Char
-imports Main Char_ord
-begin
-
-code_printing
-  type_constructor char \<rightharpoonup>
-    (SML) "char"
-    and (OCaml) "char"
-    and (Haskell) "Prelude.Char"
-    and (Scala) "Char"
-
-setup \<open>
-  fold String_Code.add_literal_char ["SML", "OCaml", "Haskell", "Scala"]
-  #> String_Code.add_literal_list_string "Haskell"
-\<close>
-
-code_printing
-  constant integer_of_char \<rightharpoonup>
-    (SML) "!(IntInf.fromInt o Char.ord)"
-    and (OCaml) "Big'_int.big'_int'_of'_int (Char.code _)"
-    and (Haskell) "Prelude.toInteger (Prelude.fromEnum (_ :: Prelude.Char))"
-    and (Scala) "BigInt(_.toInt)"
-| constant char_of_integer \<rightharpoonup>
-    (SML) "!(Char.chr o IntInf.toInt)"
-    and (OCaml) "Char.chr (Big'_int.int'_of'_big'_int _)"
-    and (Haskell) "!(let chr k | (0 <= k && k < 256) = Prelude.toEnum k :: Prelude.Char in chr . Prelude.fromInteger)"
-    and (Scala) "!((k: BigInt) => if (BigInt(0) <= k && k < BigInt(256)) k.charValue else sys.error(\"character value out of range\"))"
-| class_instance char :: equal \<rightharpoonup>
-    (Haskell) -
-| constant "HOL.equal :: char \<Rightarrow> char \<Rightarrow> bool" \<rightharpoonup>
-    (SML) "!((_ : char) = _)"
-    and (OCaml) "!((_ : char) = _)"
-    and (Haskell) infix 4 "=="
-    and (Scala) infixl 5 "=="
-| constant "Code_Evaluation.term_of :: char \<Rightarrow> term" \<rightharpoonup>
-    (Eval) "HOLogic.mk'_char/ (IntInf.fromInt/ (Char.ord/ _))"
-
-code_reserved SML
-  char
-
-code_reserved OCaml
-  char
-
-code_reserved Scala
-  char
-
-code_reserved SML String
-
-code_printing
-  constant String.implode \<rightharpoonup>
-    (SML) "String.implode"
-    and (OCaml) "!(let l = _ in let res = String.create (List.length l) in let rec imp i = function | [] -> res | c :: l -> String.set res i c; imp (i + 1) l in imp 0 l)"
-    and (Haskell) "_"
-    and (Scala) "!(\"\" ++/ _)"
-| constant String.explode \<rightharpoonup>
-    (SML) "String.explode"
-    and (OCaml) "!(let s = _ in let rec exp i l = if i < 0 then l else exp (i - 1) (String.get s i :: l) in exp (String.length s - 1) [])"
-    and (Haskell) "_"
-    and (Scala) "!(_.toList)"
-
-code_printing
-  constant "Orderings.less_eq :: char \<Rightarrow> char \<Rightarrow> bool" \<rightharpoonup>
-    (SML) "!((_ : char) <= _)"
-    and (OCaml) "!((_ : char) <= _)"
-    and (Haskell) infix 4 "<="
-    and (Scala) infixl 4 "<="
-    and (Eval) infixl 6 "<="
-| constant "Orderings.less :: char \<Rightarrow> char \<Rightarrow> bool" \<rightharpoonup>
-    (SML) "!((_ : char) < _)"
-    and (OCaml) "!((_ : char) < _)"
-    and (Haskell) infix 4 "<"
-    and (Scala) infixl 4 "<"
-    and (Eval) infixl 6 "<"
-|  constant "Orderings.less_eq :: String.literal \<Rightarrow> String.literal \<Rightarrow> bool" \<rightharpoonup>
-    (SML) "!((_ : string) <= _)"
-    and (OCaml) "!((_ : string) <= _)"
-    \<comment> \<open>Order operations for @{typ String.literal} work in Haskell only
-          if no type class instance needs to be generated, because String = [Char] in Haskell
-          and @{typ "char list"} need not have the same order as @{typ String.literal}.\<close>
-    and (Haskell) infix 4 "<="
-    and (Scala) infixl 4 "<="
-    and (Eval) infixl 6 "<="
-| constant "Orderings.less :: String.literal \<Rightarrow> String.literal \<Rightarrow> bool" \<rightharpoonup>
-    (SML) "!((_ : string) < _)"
-    and (OCaml) "!((_ : string) < _)"
-    and (Haskell) infix 4 "<"
-    and (Scala) infixl 4 "<"
-    and (Eval) infixl 6 "<"
-
-end