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:
Georges Dupéron 2017-01-08 00:04:00 +01:00
parent 741c89f5fd
commit 513c94b991
3 changed files with 38 additions and 5 deletions

View File

@ -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)

View File

@ -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))))

View File

@ -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))