Changeset View
Changeset View
Standalone View
Standalone View
source/blender/functions/FN_multi_function.hh
| Show First 20 Lines • Show All 73 Lines • ▼ Show 20 Lines | public: | ||||
| int param_amount() const | int param_amount() const | ||||
| { | { | ||||
| return signature_ref_->param_types.size(); | return signature_ref_->param_types.size(); | ||||
| } | } | ||||
| IndexRange param_indices() const | IndexRange param_indices() const | ||||
| { | { | ||||
| return signature_ref_->param_types.index_range(); | return iter_indices(signature_ref_->param_types); | ||||
| } | } | ||||
| MFParamType param_type(int param_index) const | MFParamType param_type(int param_index) const | ||||
| { | { | ||||
| return signature_ref_->param_types[param_index]; | return signature_ref_->param_types[param_index]; | ||||
| } | } | ||||
| StringRefNull param_name(int param_index) const | StringRefNull param_name(int param_index) const | ||||
| ▲ Show 20 Lines • Show All 54 Lines • Show Last 20 Lines | |||||