obj.rkt 791 B

1234567891011121314151617181920212223242526272829303132
  1. #lang racket
  2. (provide obj-maker
  3. obj-set
  4. obj-show)
  5. (define (alist->obj alist)
  6. (λ key
  7. (if (null? key)
  8. alist
  9. (cadr (assoc (car key) alist)))))
  10. (define (obj-maker . fields)
  11. (λ inits
  12. (define alist (map list fields inits))
  13. (alist->obj alist)))
  14. (define (obj-set record key value)
  15. (define alist (record))
  16. (define new-alist
  17. (let loop ((new-list '()) (cur alist) (is-set #f))
  18. (if (null? cur)
  19. (if is-set
  20. new-list
  21. (cons (list key value) new-list))
  22. (let ()
  23. (if (eq? key (caar cur))
  24. (loop (cons (list key value) new-list) (cdr cur) #t)
  25. (loop (cons (car cur) new-list) (cdr cur) is-set))))))
  26. (alist->obj new-alist))
  27. (define (obj-show x) (x))