racket/collects/data/scribblings/data.scrbl
Ryan Culpepper 0d76f8ecbf added data/order, docs
changed splay-tree, skip-list constructors to take orders
2010-09-17 16:54:54 -06:00

25 lines
615 B
Racket

#lang scribble/doc
@(require scribble/base
scribble/manual
(for-syntax racket/base racket/path)
(for-label scribble/base))
@title[#:tag "data"]{Data Structures}
@defmodule[data]
This manual documents data structure libraries available in the
@racketmodname[data] collection.
@local-table-of-contents[#:style 'immediate-only]
@;{--------}
@include-section["queue.scrbl"]
@include-section["gvector.scrbl"]
@include-section["order.scrbl"]
@include-section["splay-tree.scrbl"]
@include-section["skip-list.scrbl"]
@include-section["interval-map.scrbl"]
@include-section["heap.scrbl"]