boolean.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /* classes: h_files */
  2. #ifndef SCM_BOOLEAN_H
  3. #define SCM_BOOLEAN_H
  4. /* Copyright (C) 1995,1996,2000, 2006, 2008, 2009, 2010, 2013 Free Software Foundation, Inc.
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public License
  8. * as published by the Free Software Foundation; either version 3 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  19. * 02110-1301 USA
  20. */
  21. #include "libguile/__scm.h"
  22. /* Boolean Values. Obviously there are #t and #f, but there is also nil to deal
  23. * with. We choose to treat nil as a false boolean. All options might silently
  24. * break existing code, but this one seems most responsible.
  25. *
  26. */
  27. /*
  28. * Use these macros if it's important (for correctness)
  29. * that #nil MUST be considered true
  30. */
  31. #define scm_is_false_and_not_nil(x) (scm_is_eq ((x), SCM_BOOL_F))
  32. #define scm_is_true_or_nil(x) (!scm_is_eq ((x), SCM_BOOL_F))
  33. /*
  34. * Use these macros if #nil will never be tested,
  35. * for increased efficiency.
  36. */
  37. #define scm_is_false_assume_not_nil(x) (scm_is_eq ((x), SCM_BOOL_F))
  38. #define scm_is_true_assume_not_nil(x) (!scm_is_eq ((x), SCM_BOOL_F))
  39. /*
  40. * See the comments preceeding the definitions of SCM_BOOL_F and
  41. * SCM_MATCHES_BITS_IN_COMMON in tags.h for more information on
  42. * how the following macro works.
  43. */
  44. #define scm_is_false_or_nil(x) \
  45. (SCM_MATCHES_BITS_IN_COMMON ((x), SCM_ELISP_NIL, SCM_BOOL_F))
  46. #define scm_is_true_and_not_nil(x) (!scm_is_false_or_nil (x))
  47. /* #nil is false. */
  48. #define scm_is_false(x) (scm_is_false_or_nil (x))
  49. #define scm_is_true(x) (!scm_is_false (x))
  50. /*
  51. * Since we know SCM_BOOL_F and SCM_BOOL_T differ by exactly one bit,
  52. * and that SCM_BOOL_F and SCM_ELISP_NIL differ by exactly one bit,
  53. * and that they of course can't be the same bit (or else SCM_BOOL_T
  54. * and SCM_ELISP_NIL be would equal), it follows that SCM_BOOL_T and
  55. * SCM_ELISP_NIL differ by exactly two bits, and these are the bits
  56. * which will be ignored by SCM_MATCHES_BITS_IN_COMMON below.
  57. *
  58. * See the comments preceeding the definitions of SCM_BOOL_F and
  59. * SCM_MATCHES_BITS_IN_COMMON in tags.h for more information.
  60. *
  61. * If SCM_ENABLE_ELISP is true, then scm_is_bool_or_nil(x)
  62. * returns 1 if and only if x is one of the following: SCM_BOOL_F,
  63. * SCM_BOOL_T, SCM_ELISP_NIL, or SCM_XXX_ANOTHER_BOOLEAN_DONT_USE_0.
  64. * Otherwise, it returns 0.
  65. */
  66. #define scm_is_bool_or_nil(x) \
  67. (SCM_MATCHES_BITS_IN_COMMON ((x), SCM_BOOL_T, SCM_ELISP_NIL))
  68. #define scm_is_bool_and_not_nil(x) \
  69. (SCM_MATCHES_BITS_IN_COMMON ((x), SCM_BOOL_F, SCM_BOOL_T))
  70. SCM_API int scm_is_bool (SCM);
  71. #define scm_is_bool(x) (scm_is_bool_or_nil (x))
  72. #define scm_from_bool(x) ((x) ? SCM_BOOL_T : SCM_BOOL_F)
  73. SCM_API int scm_to_bool (SCM x);
  74. /* Older spellings for the above routines, kept around for
  75. compatibility. */
  76. #define SCM_FALSEP(x) (scm_is_false (x))
  77. #define SCM_NFALSEP(x) (scm_is_true (x))
  78. #define SCM_BOOLP(x) (scm_is_bool (x))
  79. #define SCM_BOOL(x) (scm_from_bool (x))
  80. #define SCM_NEGATE_BOOL(f) (scm_from_bool (!(f)))
  81. #define SCM_BOOL_NOT(x) (scm_not (x))
  82. /*
  83. * The following macros efficiently implement boolean truth testing as
  84. * expected by most lisps, which treat '() aka SCM_EOL as false.
  85. *
  86. * Since we know SCM_ELISP_NIL and SCM_BOOL_F differ by exactly one
  87. * bit, and that SCM_ELISP_NIL and SCM_EOL differ by exactly one bit,
  88. * and that they of course can't be the same bit (or else SCM_BOOL_F
  89. * and SCM_EOL be would equal), it follows that SCM_BOOL_F and SCM_EOL
  90. * differ by exactly two bits, and these are the bits which will be
  91. * ignored by SCM_MATCHES_BITS_IN_COMMON below.
  92. *
  93. * See the comments preceeding the definitions of SCM_BOOL_F and
  94. * SCM_MATCHES_BITS_IN_COMMON in tags.h for more information.
  95. *
  96. * scm_is_lisp_false(x) returns 1 if and only if x is one of the
  97. * following: SCM_BOOL_F, SCM_ELISP_NIL, SCM_EOL or
  98. * SCM_XXX_ANOTHER_LISP_FALSE_DONT_USE. Otherwise, it returns 0.
  99. */
  100. #define scm_is_lisp_false(x) \
  101. (SCM_MATCHES_BITS_IN_COMMON ((x), SCM_BOOL_F, SCM_EOL))
  102. SCM_API SCM scm_not (SCM x);
  103. SCM_API SCM scm_boolean_p (SCM obj);
  104. SCM_API SCM scm_nil_p (SCM obj);
  105. SCM_INTERNAL void scm_init_boolean (void);
  106. #endif /* SCM_BOOLEAN_H */
  107. /*
  108. Local Variables:
  109. c-file-style: "gnu"
  110. End:
  111. */