impc:ir:complex-type?   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/llvmir.xtm

Implementation

(define impc:ir:complex-type?
  (lambda (type)
    (cond ((impc:ir:closure? type) #t)
          ((impc:ir:tuple? type) #t)
          ((impc:ir:array? type) #t)
          ((impc:ir:vector? type) #t)
          (else #f))))


Back to Index

Similar Entries