From ee157ae23925dcc7d897ad444ad5086d727ad5ef Mon Sep 17 00:00:00 2001 From: Ryan Culpepper Date: Wed, 29 Sep 2010 11:10:33 -0400 Subject: [PATCH] commented out incomplete dict/contract docs --- collects/scribblings/reference/dicts.scrbl | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/collects/scribblings/reference/dicts.scrbl b/collects/scribblings/reference/dicts.scrbl index a96761a276..004a4695d6 100644 --- a/collects/scribblings/reference/dicts.scrbl +++ b/collects/scribblings/reference/dicts.scrbl @@ -576,6 +576,25 @@ that has the property: ]} +@;{ + +@defthing[prop:dict/contract]{ + + +} + +@deftogether[[ +@defproc[(dict-key-contract [d dict?]) contract?] +@defproc[(dict-value-contract [d dict?]) contract?]]]{ + +Returns the contract that @racket[d] imposes on its keys or values, +respectively, if @racket[d] implements the @racket[prop:dict/contract] +interface. +} +} + +@;{------------------------------------------------------------} + @deftogether[( @defproc[(make-custom-hash [eql? (any/c any/c . -> . any/c)] [hash-proc (any/c . -> . exact-integer?)]