28 lines
733 B
Racket
28 lines
733 B
Racket
#lang scribble/doc
|
|
@(require scribble/base
|
|
scribble/manual
|
|
(for-syntax racket/base racket/path)
|
|
(for-label scribble/base))
|
|
|
|
@title[#:tag "data"]{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"]
|
|
@include-section["integer-set.scrbl"]
|
|
@include-section["bit-vector.scrbl"]
|
|
@include-section["union-find.scrbl"]
|