From 1ab74a365b82041836fa170e530bacfbba923642 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Mon, 9 Aug 2010 11:33:09 -0600 Subject: [PATCH] perlglossary: Add defn for "code point" --- pod/perlglossary.pod | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pod/perlglossary.pod b/pod/perlglossary.pod index 9f0f646..268792f 100644 --- a/pod/perlglossary.pod +++ b/pod/perlglossary.pod @@ -545,6 +545,17 @@ A system that writes code for you in a low-level language, such as code to implement the backend of a compiler. See L. +=item code point + +The position of a character in a character set encoding. The character +C is almost certainly at the zeroth position in all character +sets, so it's code point is 0. The code point for the C +character in the ASCII character set is 0x20, or 32 decimal; in EBCDIC +it is 0x40, or 64 decimal. The L function returns +the code point of a character. + +"code position" and "ordinal" mean the same thing as "code point". + =item code subpattern A L subpattern whose real purpose is to execute @@ -2114,6 +2125,10 @@ L. See either L or L. +=item ordinal + +Another name for L + =item overloading Giving additional meanings to a symbol or construct. Actually, all -- 1.8.3.1