Skip to content

Unnecessary Macros? #28

@GordianNaught

Description

@GordianNaught

In particular

(defmacro $ (&rest args)
  `(kv ,@args))

Could this not be written as follows?

(defun $ (&rest args)
  (apply #'kv args))

It has been a while since I used this library, but I remember being confused at why many of the macros were in fact macros.

Please let me know how I am wrong if I am.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions