Rename to follow TR naming conventions.
original commit: f6be5447dd7beb2a3bc769c35c9d3d5f8d2baf61
This commit is contained in:
parent
91fea80cb6
commit
079a86457d
|
@ -52,7 +52,7 @@
|
|||
|
||||
|
||||
|
||||
(: tc (ThreadCellof Integer))
|
||||
(: tc (Thread-Cellof Integer))
|
||||
(define tc (make-thread-cell 0))
|
||||
|
||||
(thread-cell-set! tc 1)
|
||||
|
|
|
@ -1293,7 +1293,7 @@
|
|||
(tc-e (let: ((c : Custodian (current-custodian)))
|
||||
(custodian? c))
|
||||
#:ret (ret B (-FS -top -bot)))
|
||||
(tc-e (let: ((c : (CustodianBoxof Integer) (make-custodian-box (current-custodian) 1)))
|
||||
(tc-e (let: ((c : (Custodian-Boxof Integer) (make-custodian-box (current-custodian) 1)))
|
||||
(custodian-box-value c)) -Int)
|
||||
|
||||
;Thread Groups
|
||||
|
|
|
@ -153,6 +153,6 @@
|
|||
[MPairof (-poly (a b) (-mpair a b))]
|
||||
[MListof (-poly (a) (-mlst a))]
|
||||
[Sequenceof (-poly (a) (-seq a))]
|
||||
[ThreadCellof (-poly (a) (-thread-cell a))]
|
||||
[CustodianBoxof (-poly (a) (make-CustodianBox a))]
|
||||
[Thread-Cellof (-poly (a) (-thread-cell a))]
|
||||
[Custodian-Boxof (-poly (a) (make-CustodianBox a))]
|
||||
|
||||
|
|
|
@ -276,8 +276,8 @@ corresponding to @racket[trest], where @racket[bound]
|
|||
@defform[(Sequenceof t ...)]{A @rtech{sequence} that produces values of the
|
||||
types @racket[_t ...] on each iteration.}
|
||||
|
||||
@defform[(CustodianBoxof t)]{A @rtech{custodian box} of @racket[t].}
|
||||
@defform[(ThreadCellof t)]{A @rtech{thread cell} of @racket[t].}
|
||||
@defform[(Custodian-Boxof t)]{A @rtech{custodian box} of @racket[t].}
|
||||
@defform[(Thread-Cellof t)]{A @rtech{thread cell} of @racket[t].}
|
||||
|
||||
|
||||
@section{Syntax Objects}
|
||||
|
|
Loading…
Reference in New Issue
Block a user