(library (ikarus not-yet-implemented) (export make-rectangular angle make-polar bitwise-ior bitwise-xor bitwise-copy-bit-field bitwise-reverse-bit-field bitwise-rotate-bit-field bitwise-if fxreverse-bit-field fxrotate-bit-field bytevector->string string->bytevector make-custom-binary-input/output-port make-custom-textual-input/output-port open-file-input/output-port output-port-buffer-mode port-has-port-position? port-has-set-port-position!? port-position set-port-position! make-eqv-hashtable hashtable-hash-function make-hashtable hashtable-equivalence-function equal-hash string-downcase string-normalize-nfc string-normalize-nfd string-normalize-nfkc string-normalize-nfkd string-titlecase string-upcase) (import (except (ikarus) make-rectangular angle make-polar bitwise-ior bitwise-xor bitwise-copy-bit-field bitwise-reverse-bit-field bitwise-rotate-bit-field bitwise-if fxreverse-bit-field fxrotate-bit-field bytevector->string string->bytevector make-custom-binary-input/output-port make-custom-textual-input/output-port open-file-input/output-port output-port-buffer-mode port-has-port-position? port-has-set-port-position!? port-position set-port-position! make-eqv-hashtable hashtable-hash-function make-hashtable hashtable-equivalence-function equal-hash string-downcase string-normalize-nfc string-normalize-nfd string-normalize-nfkc string-normalize-nfkd string-titlecase string-upcase)) (define-syntax not-yet (syntax-rules () [(_ x* ...) (begin (define (bug op) (define-condition-type &url &condition make-url-condition url-condition? (url condition-url)) (raise (condition (make-error) (make-who-condition 'ikarus) (make-message-condition "primitive not supported yet") (make-message-condition "please file a bug report to help us prioritize our goals") (make-url-condition "https://bugs.launchpad.net/ikarus/+filebug") (make-irritants-condition (list op))))) (define (x* . args) (bug 'x*)) ...)])) (not-yet make-rectangular angle make-polar bitwise-ior bitwise-xor bitwise-copy-bit-field bitwise-reverse-bit-field bitwise-rotate-bit-field bitwise-if fxreverse-bit-field fxrotate-bit-field bytevector->string string->bytevector make-custom-binary-input/output-port make-custom-textual-input/output-port open-file-input/output-port output-port-buffer-mode port-has-port-position? port-has-set-port-position!? port-position set-port-position! make-eqv-hashtable hashtable-hash-function make-hashtable hashtable-equivalence-function equal-hash string-downcase string-normalize-nfc string-normalize-nfd string-normalize-nfkc string-normalize-nfkd string-titlecase string-upcase))