class KinematicLimitsList

February 26, 2020 ยท View on GitHub

Member values

Member nameData typeDescription
kinematic_limits_listKinematicLimitsList of kinematic limits

Member functions

Function nameReturn typeInput typeDescription
kinematic_limits_list_size() constintvoidReturns the number of elements currently in the field.
kinematic_limits_list() constconst KinematicLimitsint indexReturns the element at the given zero-based index. Calling this method with index outside of [0, kinematic_limits_list_size()) yields undefined behavior.
mutable_kinematic_limits_list()KinematicLimits*int indexReturns a pointer to the mutable KinematicLimits object that stores the value of the element at the given zero-based index. Calling this method with index outside of [0, kinematic_limits_list_size()) yields undefined behavior.
add_kinematic_limits_list()KinematicLimits*voidAdds a new element and returns a pointer to it. The returned KinematicLimits is mutable and will have none of its fields set (i.e. it will be identical to a newly-allocated KinematicLimits).
clear_kinematic_limits_list()voidvoidRemoves all elements from the field. After calling this, kinematic_limits_list_size() will return zero.
kinematic_limits_list() constconst RepeatedPtrField< KinematicLimits>&voidReturns the underlying RepeatedPtrField that stores the field's elements. This container class provides STL-like iterators and other methods.
mutable_kinematic_limits_list()RepeatedPtrField< KinematicLimits>*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: ControlConfig (C++)