We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
hash-table-constructor-with-lists
1 parent 8d0b435 commit 4e675bdCopy full SHA for 4e675bd
compatibility-doc/mzlib/scribblings/pconvert.scrbl
@@ -81,6 +81,16 @@ A parameter that controls whether a @racketidfont{make-} prefix is
81
added to a constructor name for a structure instance. The initial
82
value of the parameter is @racket[#f].}
83
84
+@defboolparam[hash-table-constructor-with-lists use-list?]{
85
+ A parameter that controls whether the key/value pairs in a
86
+ hash are printed with @racketidfont{cons} or
87
+ @racketidfont{list}. The initial value of the parameter is
88
+ @racket[#f], meaning that a hash table like @racket[(hash 'x 1 'y 2)]
89
+ converts to @racket['(make-hash (list (list 'x 1) (list 'y 1)))].
90
+
91
+ @history[#:added "1.2"]
92
+}
93
94
95
96
@defproc[(build-share [v any/c]) ....]{
0 commit comments