.. -*- coding: utf-8 -*- 用語集 ====== .. glossary:: iterable __iter__ メソッドを持つクラスです. Python 組込み型では tuple, list, set, dict などが, PySIMPLE では :obj:`~pysimple.Set`, :obj:`~pysimple.Parameter`, :obj:`~pysimple.Variable` などが該当します. mutableset 抽象基底クラス collections.abc.MutableSet を継承しているクラスです. Python 組込み型では set などが,PySIMPLE では :obj:`~pysimple.Set` などが該当します. data-type キーや値として使用できる型です. 数値型と文字列型が該当します. element-like 添字として使用できる型です. :obj:`~pysimple.Element`, :obj:`~pysimple.element.ElementSlice`, :obj:`~pysimple.condition.Cond` 型です. funcable-type `mathfunc` に使用できる型です. `data-type`, `element-like`, :obj:`~pysimple.Parameter`, :obj:`~pysimple.table.Table` 型です. operable-type `operation` ができる型です. `data-type`, `element-like`, :obj:`~pysimple.Parameter`, :obj:`~pysimple.table.Table`, :obj:`~pysimple.Variable`, :obj:`~pysimple.expression.Expression` 型です.