racket/collects/math/private/array/array-convert.rkt
Neil Toronto f2dc2027f6 Initial math library commit. The history for these changes is preserved
in the original GitHub fork:

  https://github.com/ntoronto/racket

Some things about this are known to be broken (most egregious is that the
array tests DO NOT RUN because of a problem in typed/rackunit), about half
has no coverage in the tests, and half has no documentation. Fixes and
docs are coming. This is committed now to allow others to find errors and
inconsistency in the things that appear to be working, and to give the
author a (rather incomplete) sense of closure.
2012-11-16 11:39:51 -07:00

30 lines
872 B
Racket

#lang racket/base
(require typed/untyped-utils
(except-in "typed-array-convert.rkt"
list*->array
vector*->array)
(prefix-in typed: (only-in "typed-array-convert.rkt"
list*->array
vector*->array))
(prefix-in untyped: (only-in "untyped-array-convert.rkt"
list*->array
vector*->array)))
(provide list*->array
vector*->array
array->list*
array->vector*
list->array
vector->array
array->list
array->vector)
(define-typed/untyped-identifier list*->array
typed:list*->array
untyped:list*->array)
(define-typed/untyped-identifier vector*->array
typed:vector*->array
untyped:vector*->array)