src/HOL/Library/Code_Char_chr.thy
author nipkow
Tue, 07 Sep 2010 10:05:19 +0200
changeset 39428 f967a16dfcdd
parent 37221 4d984bc33c66
child 39535 d7728f65b353
permissions -rw-r--r--
expand_fun_eq -> ext_iff
expand_set_eq -> set_ext_iff
Naming in line now with multisets
     1 (*  Title:      HOL/Library/Code_Char_chr.thy
     2     Author:     Florian Haftmann
     3 *)
     4 
     5 header {* Code generation of pretty characters with character codes *}
     6 
     7 theory Code_Char_chr
     8 imports Char_nat Code_Char Code_Integer Main
     9 begin
    10 
    11 definition
    12   "int_of_char = int o nat_of_char"
    13 
    14 lemma [code]:
    15   "nat_of_char = nat o int_of_char"
    16   unfolding int_of_char_def by (simp add: ext_iff)
    17 
    18 definition
    19   "char_of_int = char_of_nat o nat"
    20 
    21 lemma [code]:
    22   "char_of_nat = char_of_int o int"
    23   unfolding char_of_int_def by (simp add: ext_iff)
    24 
    25 code_const int_of_char and char_of_int
    26   (SML "!(IntInf.fromInt o Char.ord)" and "!(Char.chr o IntInf.toInt)")
    27   (OCaml "Big'_int.big'_int'_of'_int (Char.code _)" and "Char.chr (Big'_int.int'_of'_big'_int _)")
    28   (Haskell "toInteger (fromEnum (_ :: Char))" and "!(let chr k | (0 <= k && k < 256) = toEnum k :: Char in chr . fromInteger)")
    29   (Scala "BigInt(_.toInt)" and "!((k: BigInt) => if (BigInt(0) <= k && k < BigInt(256)) k.charValue else error(\"character value out of range\"))")
    30 
    31 end