On this page:
require/ provide
quote-require
Version: 5.2

28 Requiring Modules

 (require unstable/require)

This module provides tools for importing from modules.

(require/provide module-path ...)
Re-exports all bindings provided by each module-path. Equivalent to:

(require module-path ...)
(provide (all-from-out module-path ...))

(quote-require require-spec ...)
Produces the names exported by the require-specs as a list of symbols.

Example:

> (quote-require racket/bool racket/function)

'(true symbol=? false? false boolean=? thunk thunk* negate identity curryr curry const)