assoc.scm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ;;; assoc/member
  2. ;;; Copyright (C) 2023, 2024 Igalia, S.L.
  3. ;;;
  4. ;;; Licensed under the Apache License, Version 2.0 (the "License");
  5. ;;; you may not use this file except in compliance with the License.
  6. ;;; You may obtain a copy of the License at
  7. ;;;
  8. ;;; http://www.apache.org/licenses/LICENSE-2.0
  9. ;;;
  10. ;;; Unless required by applicable law or agreed to in writing, software
  11. ;;; distributed under the License is distributed on an "AS IS" BASIS,
  12. ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. ;;; See the License for the specific language governing permissions and
  14. ;;; limitations under the License.
  15. ;;; Commentary:
  16. ;;;
  17. ;;; assoc, member, and friends.
  18. ;;;
  19. ;;; Code:
  20. (library (hoot assoc)
  21. (export assq assv assoc
  22. assq-ref assv-ref assoc-ref
  23. memq memv member)
  24. (import (hoot eq)
  25. (hoot equal)
  26. (hoot lists)
  27. (hoot not)
  28. (hoot pairs)
  29. (hoot syntax))
  30. (define-syntax-rule (define-member+assoc member assoc assoc-ref compare
  31. optarg ...)
  32. (begin
  33. (define* (member v l optarg ...)
  34. (let lp ((l l))
  35. (cond
  36. ((null? l) #f)
  37. ((compare v (car l)) l)
  38. (else (lp (cdr l))))))
  39. (define* (assoc v l optarg ...)
  40. (let lp ((l l))
  41. (and (not (null? l))
  42. (let ((head (car l)))
  43. (if (compare v (car head))
  44. head
  45. (lp (cdr l)))))))
  46. (define (assoc-ref l k)
  47. (cond
  48. ((assoc k l) => cdr)
  49. (else #f)))))
  50. (define-member+assoc memq assq assq-ref eq?)
  51. (define-member+assoc memv assv assv-ref eqv?)
  52. (define-member+assoc member assoc assoc-ref compare
  53. #:optional (compare equal?)))