Retrieve the current separator for paired names.
(get-paired-name-separator wrld) → separator
If the separator is not set yet, the default is returned.
Function:
(defun get-paired-name-separator (wrld) (declare (xargs :guard (plist-worldp wrld))) (let ((__function__ 'get-paired-name-separator)) (declare (ignorable __function__)) (let ((pair (assoc-eq 'separator (table-alist 'paired-name-separator wrld)))) (if pair (cdr pair) *default-paired-name-separator*))))