racket/collects/web-server/scribblings/mod-map.scrbl
Eli Barzilay a70bf64fd9 Newlines at EOFs
svn: r15380
2009-07-04 02:28:31 +00:00

26 lines
706 B
Racket

#lang scribble/doc
@(require "web-server.ss")
@title[#:tag "mod-map.ss"]{Serialization Utilities}
@(require (for-label web-server/private/mod-map))
@defmodule[web-server/private/mod-map]{
The @schememodname[scheme/serialize] library provides the
functionality of serializing values. This module
compresses the serialized representation.
@defproc[(compress-serial [sv list?])
list?]{
Collapses multiple occurrences of the same module in the module
map of the serialized representation, @scheme[sv].
}
@defproc[(decompress-serial [csv list?])
list?]{
Expands multiple occurrences of the same module in the module
map of the compressed serialized representation, @scheme[csv].
}
}