add dig to anoia
This commit is contained in:
parent
e3ec514710
commit
5695c47496
@ -62,6 +62,12 @@
|
|||||||
(assert (not (table= {:a [4 5 6 7] } {:a [4 5 6 7 8]})))
|
(assert (not (table= {:a [4 5 6 7] } {:a [4 5 6 7 8]})))
|
||||||
(assert (not (table= {:a [4 5 7 6] } {:a [4 5 6 7 ]}))))
|
(assert (not (table= {:a [4 5 7 6] } {:a [4 5 6 7 ]}))))
|
||||||
|
|
||||||
|
(fn dig [tree path]
|
||||||
|
(match path
|
||||||
|
[el & more] (dig (. tree el) more)
|
||||||
|
[el] (. tree el)
|
||||||
|
[] tree))
|
||||||
|
|
||||||
(local
|
(local
|
||||||
base64-indices
|
base64-indices
|
||||||
(doto [
|
(doto [
|
||||||
@ -103,6 +109,7 @@
|
|||||||
: assoc
|
: assoc
|
||||||
: base64url
|
: base64url
|
||||||
: basename
|
: basename
|
||||||
|
: dig
|
||||||
: dirname
|
: dirname
|
||||||
: dup
|
: dup
|
||||||
: file-exists?
|
: file-exists?
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
(local { : system : assoc : split : table= } (require :anoia))
|
(local { : system : assoc : split : table= : dig } (require :anoia))
|
||||||
(local svc (require :anoia.svc))
|
(local svc (require :anoia.svc))
|
||||||
(local { : view } (require :fennel))
|
(local { : view } (require :fennel))
|
||||||
(local { : kill } (require :lualinux))
|
(local { : kill } (require :lualinux))
|
||||||
@ -22,12 +22,6 @@
|
|||||||
:paths (split-paths paths)
|
:paths (split-paths paths)
|
||||||
}))
|
}))
|
||||||
|
|
||||||
(fn dig [tree path]
|
|
||||||
(match path
|
|
||||||
[el & more] (dig (. tree el) more)
|
|
||||||
[el] (. tree el)
|
|
||||||
[] tree))
|
|
||||||
|
|
||||||
(fn changed? [paths old-tree new-tree]
|
(fn changed? [paths old-tree new-tree]
|
||||||
(accumulate [changed? false
|
(accumulate [changed? false
|
||||||
_ path (ipairs paths)]
|
_ path (ipairs paths)]
|
||||||
|
Loading…
Reference in New Issue
Block a user