src/package.lisp @ 502eaba9e114

Add some docstrings
author Steve Losh <steve@stevelosh.com>
date Tue, 21 May 2019 22:51:10 -0400
parents cc1aad82d9f6
children d5dbc46f6ddb
(defpackage :adopt
  (:use :cl)
  (:export
    :define-string

    :make-option
    :make-group
    :make-interface

    :parse-options

    :print-help
    :print-help-and-exit
    :print-error-and-exit
    :print-manual

    :argv
    :exit

    :unrecognized-option
    :problematic-option
    :discard-option
    :treat-as-argument
    :supply-new-value

    :flip
    :collect
    :first
    :last

    )
  (:shadow :collect :reduce :first :last))