handy.h: Add comment
authorKarl Williamson <public@khwilliamson.com>
Fri, 7 Dec 2012 02:09:26 +0000 (19:09 -0700)
committerKarl Williamson <public@khwilliamson.com>
Sun, 9 Dec 2012 19:08:28 +0000 (12:08 -0700)
handy.h

diff --git a/handy.h b/handy.h
index 52af831..b9e5f89 100644 (file)
--- a/handy.h
+++ b/handy.h
@@ -1133,6 +1133,14 @@ EXTCONST U32 PL_charclass[];
                                            ? function(p)                       \
                                            : 0)
 
+/* NOTE that some of these macros have very similar ones in regcharclass.h.
+ * For example, there is (at the time of this writing) an 'is_SPACE_utf8()'
+ * there, differing in name only by an underscore from the one here
+ * 'isSPACE_utf8().  The difference is that the ones here are probably more
+ * efficient and smaller, using an O(1) array lookup for Latin1-range code
+ * points; the regcharclass.h ones are implemented as a series of
+ * "if-else-if-else ..." */
+
 #define isALNUMC_utf8(p)        _generic_utf8(_CC_ALNUMC, is_utf8_alnumc, p)
 #define isALNUM_utf8(p)         isWORDCHAR_utf8(p)  /* back compat */
 #define isALPHA_utf8(p)         _generic_utf8(_CC_ALPHA, is_utf8_alpha, p)