refactor
This commit is contained in:
parent
894f62384e
commit
dc5aaa7e08
12
parking.scm
12
parking.scm
@ -17,6 +17,13 @@
|
||||
(array . ,identity)
|
||||
(null . ,(constantly '()))) (json-parsers)))
|
||||
|
||||
;; The resultant type definition for the above parser rules.
|
||||
(define-type json *)
|
||||
(define-type json
|
||||
(or string boolean number float null
|
||||
(list-of json)
|
||||
(list-of (pair symbol json))))
|
||||
|
||||
(: curry (procedure * --> procedure))
|
||||
(define (curry fn a)
|
||||
(lambda (b)
|
||||
@ -94,11 +101,6 @@
|
||||
(apply string-append
|
||||
(map (curry2 upon symbol? (compose ->string (curry (flip value) ln))) statement)))
|
||||
|
||||
(define-type json *)
|
||||
(define-type json
|
||||
(or string boolean number float null
|
||||
(list-of json)
|
||||
(list-of (pair symbol json))))
|
||||
|
||||
;;; Get data from a uri and parse it as json.
|
||||
(: simple-json-request (string -> json))
|
||||
|
Loading…
Reference in New Issue
Block a user