blob: d82bc9ce88e98560ccff9157fe038fb9990ded00 (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
(defun string-to-clist (str)
(coerce str 'list))
(defun clist-to-string (clist)
(if (atom clist)
(string clist)
(coerce clist 'string)))
(defun split-by-first (lst delim &optional (test #'eq))
"Splits LST by the first instance of DELIM"
(let ((pos (position delim lst :test test)))
(if pos
(list (subseq lst 0 pos) (subseq lst (+ pos 1)))
(error (format nil "No instance of ~a was found in ~a" delim lst)))))
(defun split-by-completely (lst delim &optional (test #'eq))
(cond
((or (null lst) (not (cdr lst)))
(list (car lst)))
((not (member delim lst :test test))
(list lst))
(t
(loop
for (start rest) = (split-by-first lst delim test)
then (split-by-first rest delim test)
collect start
if (not (member delim rest :test test))
collect rest
and do (loop-finish)))))
(defun get-lines (input-string)
(with-input-from-string (s input-string)
(loop for line = (read-line s nil)
while line
collect line)))
(defun remove-nth (n lst)
(loop for el in lst
for i from 0
if (not (= i n))
collect el))
(defmacro --> (first &rest functions)
(let ((builder first))
(loop for function in functions
do (setq builder `(let ((it ,builder))
,function)))
builder))
|