-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.lisp
More file actions
21 lines (20 loc) · 1.2 KB
/
Copy pathpackage.lisp
File metadata and controls
21 lines (20 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Coding:utf-8; Package:April -*-
;;;; package.lisp
(defpackage #:april
(:export #:april #:april-f #:april-c #:april-load #:with-april-context
#:april-create-workspace #:april-clear-workspace
#:april-print-progress-bar #:strides-of)
(:use #:cl #:aplesque #:vex #:varray #:cape)
(:shadowing-import-from #:aplesque.forms #:indexer-section #:indexer-expand)
(:shadowing-import-from #:array-operations #:flatten #:dims #:size #:rank #:element-type)
(:shadowing-import-from #:cl-ppcre #:split #:regex-replace-all)
(:shadowing-import-from #:prove #:plan #:is #:finalize)
(:shadowing-import-from #:alexandria #:iota #:copy-array)
(:shadowing-import-from #:lparallel #:pdotimes)
(:shadowing-import-from #:parse-number #:parse-number)
(:shadowing-import-from #:symbol-munger #:lisp->camel-case)
(:shadowing-import-from #:simple-date-time #:now #:year-of #:month-of #:day-of #:hour-of
#:minute-of #:second-of #:millisecond-of)
(:shadowing-import-from #:trivia #:match #:guard)
(:shadowing-import-from #:random-state #:make-generator #:random-int #:random-float)
(:shadowing-import-from #:cl-unicode #:general-category))