|
#ifndef SCM_BOOLEAN_H |
|
#define SCM_BOOLEAN_H |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "libguile/scm.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define scm_is_false_and_not_nil(x) (scm_is_eq ((x), SCM_BOOL_F)) |
|
#define scm_is_true_or_nil(x) (!scm_is_eq ((x), SCM_BOOL_F)) |
|
|
|
|
|
|
|
|
|
|
|
#define scm_is_false_assume_not_nil(x) (scm_is_eq ((x), SCM_BOOL_F)) |
|
#define scm_is_true_assume_not_nil(x) (!scm_is_eq ((x), SCM_BOOL_F)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
#define scm_is_false_or_nil(x) \ |
|
(SCM_MATCHES_BITS_IN_COMMON ((x), SCM_ELISP_NIL, SCM_BOOL_F)) |
|
#define scm_is_true_and_not_nil(x) (!scm_is_false_or_nil (x)) |
|
|
|
|
|
#define scm_is_false(x) (scm_is_false_or_nil (x)) |
|
#define scm_is_true(x) (!scm_is_false (x)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define scm_is_bool_or_nil(x) \ |
|
(SCM_MATCHES_BITS_IN_COMMON ((x), SCM_BOOL_T, SCM_ELISP_NIL)) |
|
#define scm_is_bool_and_not_nil(x) \ |
|
(SCM_MATCHES_BITS_IN_COMMON ((x), SCM_BOOL_F, SCM_BOOL_T)) |
|
|
|
SCM_API int scm_is_bool (SCM); |
|
|
|
#define scm_is_bool(x) (scm_is_bool_or_nil (x)) |
|
|
|
#define scm_from_bool(x) ((x) ? SCM_BOOL_T : SCM_BOOL_F) |
|
SCM_API int scm_to_bool (SCM x); |
|
|
|
|
|
|
|
|
|
|
|
#define SCM_FALSEP(x) (scm_is_false (x)) |
|
#define SCM_NFALSEP(x) (scm_is_true (x)) |
|
#define SCM_BOOLP(x) (scm_is_bool (x)) |
|
#define SCM_BOOL(x) (scm_from_bool (x)) |
|
#define SCM_NEGATE_BOOL(f) (scm_from_bool (!(f))) |
|
#define SCM_BOOL_NOT(x) (scm_not (x)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define scm_is_lisp_false(x) \ |
|
(SCM_MATCHES_BITS_IN_COMMON ((x), SCM_BOOL_F, SCM_EOL)) |
|
|
|
|
|
|
|
|
|
SCM_API SCM scm_not (SCM x); |
|
SCM_API SCM scm_boolean_p (SCM obj); |
|
SCM_API SCM scm_nil_p (SCM obj); |
|
|
|
|
|
|
|
|
|
#define SCM_VALIDATE_BOOL(pos, flag) \ |
|
do { \ |
|
SCM_ASSERT_TYPE (scm_is_bool (flag), flag, pos, FUNC_NAME, "boolean"); \ |
|
} while (0) |
|
|
|
#define SCM_VALIDATE_BOOL_COPY(pos, flag, cvar) \ |
|
do { \ |
|
SCM_ASSERT (scm_is_bool (flag), flag, pos, FUNC_NAME); \ |
|
cvar = scm_to_bool (flag); \ |
|
} while (0) |
|
|
|
|
|
|
|
|
|
SCM_INTERNAL void scm_init_boolean (void); |
|
|
|
#endif |
|
|