-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.lisp
31 lines (31 loc) · 865 Bytes
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(defpackage :aoc
(:use . #1=(:cl :alexandria :ppcre :trivia
:named-readtables :esrap :lparallel
:aoc.fetch :aoc.utils :aoc.grids
:aoc.generator))
(:export #:fold-input-lines
#:do-input-lines
#:with-input
#:slurp-line
#:map-line-chunks
#:map-input
#:do-integers
#:map-all-integers
#:all-integers
#:push-to
#:int
#:word
#:letter
#:decode-format
#:scanner-bind
#:scan-as-values
#:scan-as-list
#:read-grid
#:map-grid-into
#:fold-grid
#:*neighbour-offsets*
#:map-neighbours
#:define-test
#:test-all
.
#.(aoc.utils:external-symbols . #1#)))