hyper-literate/scribble-lib/scribble/valid-blueboxes-info.rkt
2015-07-11 09:53:54 -05:00

15 lines
353 B
Racket

#lang racket/base
(provide valid-blueboxes-info?)
(require scribble/core racket/contract/base)
(define valid-blueboxes-info?
(hash/c
tag?
(listof (cons/dc [hd exact-nonnegative-integer?]
[tl (hd) (and/c exact-nonnegative-integer?
(>/c hd))]
#:flat))
#:flat? #t))