Failed attempt at disguising a vector as struct using make-struct-info, struct/c (which TR uses internally in make-predicate) seems to ignore the predicate supplied to make-struct-info.
This commit is contained in:
parent
741c89f5fd
commit
513c94b991
11
main.rkt
11
main.rkt
|
@ -3,11 +3,18 @@
|
|||
(require typed/racket/unsafe)
|
||||
|
||||
(provide IVectorof
|
||||
(rename-out [new-ivector ivector]))
|
||||
IVectorof2
|
||||
(rename-out [new-ivector ivector])
|
||||
(rename-out [new-ivector2 ivector2])
|
||||
ivector2-v)
|
||||
|
||||
(unsafe-require/typed tr-immutable/private/unsafe
|
||||
[#:struct (A) ivector ([v : (Listof A)])
|
||||
#:type-name IVectorof])
|
||||
#:type-name IVectorof]
|
||||
[#:struct (A) ivector2 ([v : (Listof A)])
|
||||
#:constructor-name make-ivector2
|
||||
#:type-name IVectorof2]
|
||||
[new-ivector2 (∀ (A) (→ A * (IVectorof2 A)))])
|
||||
|
||||
(: new-ivector (∀ (A) (→ A * (IVectorof A))))
|
||||
(define (new-ivector . vs)
|
||||
|
|
|
@ -2,5 +2,31 @@
|
|||
|
||||
;; TODO: make this a vector in the implementation, but make TR think it's a
|
||||
;; list (via a contract?)
|
||||
(provide (struct-out ivector))
|
||||
(struct ivector (v) #:mutable)
|
||||
(provide (struct-out ivector)
|
||||
;(struct-out ivector2)
|
||||
ivector2
|
||||
ivector2?
|
||||
struct:ivector2
|
||||
(rename-out [vector->list ivector2-v])
|
||||
(rename-out [list->vector make-ivector2])
|
||||
(rename-out [vector new-ivector2]))
|
||||
(define insp (make-inspector))
|
||||
(struct ivector (v) #:mutable
|
||||
#:inspector insp)
|
||||
|
||||
;;;;;;;;;;;;;
|
||||
(require (for-syntax racket/base
|
||||
racket/struct-info))
|
||||
|
||||
(define (ivector2? v) (and (vector? v) (immutable? v)))
|
||||
|
||||
(define struct:ivector2 #f)
|
||||
(define-syntax ivector2
|
||||
(make-struct-info
|
||||
(λ ()
|
||||
(list #f
|
||||
#'list->vector
|
||||
#'ivector2?
|
||||
(list #'vector->list)
|
||||
(list #f)
|
||||
#t))))
|
|
@ -2,4 +2,4 @@
|
|||
|
||||
(require tr-immutable
|
||||
typed/rackunit)
|
||||
(check-pred (make-predicate (IVectorof Positive-Byte)) (ivector 1 2 3))
|
||||
(check-pred (make-predicate (IVectorof Positive-Byte)) (ivector 1 2 3))
|
||||
|
|
Loading…
Reference in New Issue
Block a user