class JointsLimitationsList

August 13, 2019 ยท View on GitHub

Member values

Member nameData typeDescription
joints_limitationsJointLimitationJoints Limitations

Member functions

Function nameReturn typeInput typeDescription
joints_limitations_size() constintvoidReturns the number of elements currently in the field.
joints_limitations() constconst JointLimitationint indexReturns the element at the given zero-based index. Calling this method with index outside of [0, joints_limitations_size()) yields undefined behavior.
mutable_joints_limitations()JointLimitation*int indexReturns a pointer to the mutable JointLimitation object that stores the value of the element at the given zero-based index. Calling this method with index outside of [0, joints_limitations_size()) yields undefined behavior.
add_joints_limitations()JointLimitation*voidAdds a new element and returns a pointer to it. The returned JointLimitation is mutable and will have none of its fields set (i.e. it will be identical to a newly-allocated JointLimitation).
clear_joints_limitations()voidvoidRemoves all elements from the field. After calling this, joints_limitations_size() will return zero.
joints_limitations() constconst RepeatedPtrField< JointLimitation>&voidReturns the underlying RepeatedPtrField that stores the field's elements. This container class provides STL-like iterators and other methods.
mutable_joints_limitations()RepeatedPtrField< JointLimitation>*voidReturns a pointer to the underlying mutable RepeatedPtrField that stores the field's elements. This container class provides STL-like iterators and other methods.

Parent topic: Base (C++)