Renamed typed/plot' to
plot/typed'
This commit is contained in:
parent
60dd8d065f
commit
009293885b
|
@ -1503,9 +1503,7 @@ path/s is either such a string or a list of them.
|
|||
"collects/texpict/face-demo.rkt" drdr:command-line (mzc *)
|
||||
"collects/trace" responsible (mflatt robby)
|
||||
"collects/typed" responsible (samth)
|
||||
"collects/typed/plot" responsible (ntoronto)
|
||||
"collects/typed/rackunit" responsible (jay)
|
||||
"collects/typed/tests/typed-plot-tests.rkt" responsible (ntoronto)
|
||||
"collects/typed-racket" responsible (samth stamourv)
|
||||
"collects/typed-racket/base-env/base-special-env.rkt" drdr:command-line (raco "make" *)
|
||||
"collects/typed-racket/optimizer" responsible (stamourv)
|
||||
|
|
|
@ -8,7 +8,10 @@
|
|||
@author{@(author+email "Neil Toronto" (author-email))}
|
||||
|
||||
@defmodule[plot]
|
||||
@defmodule*/no-declare[(typed/plot)]
|
||||
|
||||
Typed Racket users should use
|
||||
|
||||
@defmodule*/no-declare[(plot/typed)]
|
||||
|
||||
@(plot-name) provides a flexible interface for producing nearly any kind of plot.
|
||||
It includes many common kinds already, such as scatter plots, line plots, contour plots, histograms, and 3D surfaces and isosurfaces.
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#lang typed/racket
|
||||
|
||||
(require typed/plot)
|
||||
;; These tests "pass" when they pass the type checker and raise no exceptions
|
||||
|
||||
(require plot/typed)
|
||||
|
||||
(define xs (build-list 1000 (λ (_) (random))))
|
||||
(define ys (build-list 1000 (λ (_) (random))))
|
4
collects/plot/typed.rkt
Normal file
4
collects/plot/typed.rkt
Normal file
|
@ -0,0 +1,4 @@
|
|||
#lang racket/base
|
||||
|
||||
(require "typed/main.rkt")
|
||||
(provide (all-from-out "typed/main.rkt"))
|
|
@ -1,4 +0,0 @@
|
|||
#lang racket/base
|
||||
|
||||
(require "plot/main.rkt")
|
||||
(provide (all-from-out "plot/main.rkt"))
|
Loading…
Reference in New Issue
Block a user