;;;; type-checks-numbers.cplxnum.scm -*- Scheme -*- (module (type-checks-numbers cplxnum) (;export check-cplxnum) (import scheme) (import (chicken base)) (import (chicken module)) (import (chicken type)) (import type-checks-basic) (import (type-errors-numbers cplxnum)) (: check-cplxnum (* * #!optional * -> cplxnum)) (define-check-type cplxnum) ) ;module (type-checks-numbers cplxnum)