% Function SIMPLE-CONDITION-FORMAT-CONTROL, SIMPLE-CONDITION-FORMAT-ARGUMENTS
Function SIMPLE-CONDITION-FORMAT-CONTROL
, SIMPLE-CONDITION-FORMAT-ARGUMENTS
simple-condition-format-control
condition => format-control
simple-condition-format-arguments
condition => format-arguments
condition - 型simple-condition
のコンディション
format-control - format-control
format-arguments - リスト
simple-condition-format-control
は、
conditionのformat-argumentsの処理で必要になるformat-controlを返却します。
simple-condition-format-arguments
は、
conditionのformat-controlの処理で必要になるformat-argumentsを返却します。
(setq foo (make-condition 'simple-condition
:format-control "Hi ~S"
:format-arguments '(ho)))
=> #<SIMPLE-CONDITION 26223553>
(apply #'format nil (simple-condition-format-control foo)
(simple-condition-format-arguments foo))
=> "Hi HO"
なし。
なし。
なし。
simple-condition
,
9.1. コンディションシステムの説明
なし。