-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
Is there any need to create accessors for more Lisp-style access to ZMQ socket options? I realized that my own code has the following snippet for setting multiple socket options at once:
(defun set-socket-options (socket &rest args)
(loop for (key value) on args by #'cddr
do (z:setsockopt socket key value)))Another idea would be to create #'socket-option and #'(setf socket-option) for Lisp-style reader and writer.
Metadata
Metadata
Assignees
Labels
No labels