X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=scm%2Fc%2B%2B.scm;h=ded5e9b1209bc0c0be4627db018962d7196eb0f1;hb=e6e664d1bd2b125f6e34d47f7b7e69271865343a;hp=74f58f4da3f4da2449535f0faf6ca1034c85dcd0;hpb=1c846b2c2348b4e0ca4a3c2e8fb267047ba2d203;p=lilypond.git diff --git a/scm/c++.scm b/scm/c++.scm index 74f58f4da3..ded5e9b120 100644 --- a/scm/c++.scm +++ b/scm/c++.scm @@ -1,6 +1,6 @@ ;;;; This file is part of LilyPond, the GNU music typesetter. ;;;; -;;;; Copyright (C) 1998--2011 Jan Nieuwenhuizen +;;;; Copyright (C) 1998--2012 Jan Nieuwenhuizen ;;;; Han-Wen Nienhuys ;;;; ;;;; LilyPond is free software: you can redistribute it and/or modify @@ -25,12 +25,22 @@ (and (pair? x) (number? (car x)) (number? (cdr x)))) +(define-public (fraction? x) + (and (pair? x) + (index? (car x)) (index? (cdr x)))) + (define-public (number-or-grob? x) (or (ly:grob? x) (number? x))) (define-public (grob-list? x) (list? x)) +(define-public (number-list? x) + (and (list? x) (every number? x))) + +(define-public (index? x) + (and (integer? x) (>= x 0))) + (define-public (moment-pair? x) (and (pair? x) (ly:moment? (car x)) (ly:moment? (cdr x)))) @@ -61,6 +71,9 @@ (define-public (symbol-or-boolean? x) (or (symbol? x) (boolean? x))) +(define-public (void? x) + (unspecified? x)) + ;; moved list to end of lily.scm: then all type-predicates are ;; defined. (define type-p-name-alist '())