1 ;;;; c++.scm -- implement Scheme frontends to C++ functions
3 ;;;; source file of the GNU LilyPond music typesetter
5 ;;;; (c) 1998--2003 Jan Nieuwenhuizen <janneke@gnu.org>
6 ;;;; Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 ;;; Note: this file can't be used without LilyPond executable
11 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
13 (define-public (number-pair? x)
15 (number? (car x)) (number? (cdr x))))
16 (define-public (number-or-grob? x)
17 (or (ly:grob? x) (number? x))
20 (define-public (grob-list? x)
23 (define-public (moment-pair? x)
25 (ly:moment? (car x)) (ly:moment? (cdr x))))
27 (define-public (boolean-or-symbol? x)
28 (or (boolean? x) (symbol? x)))
30 (define-public (number-or-string? x)
31 (or (number? x) (string? x)))
33 (define-public (scheme? x) #t)
37 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
41 ;; moved list to end of lily.scm: then all type-predicates are
43 (define type-p-name-alist '())
45 (define (match-predicate obj alist)
48 (if (apply (caar alist) obj)
50 (match-predicate obj (cdr alist))
54 (define-public (object-type obj)
55 (match-predicate obj type-p-name-alist))
57 (define-public (type-name predicate)
58 (let ((entry (assoc predicate type-p-name-alist)))
59 (if (pair? entry) (cdr entry)