Skip to content

Use array instead of List for ROS message types#165

Open
jacobperron wants to merge 8 commits intodashingfrom
jacob/redo_151
Open

Use array instead of List for ROS message types#165
jacobperron wants to merge 8 commits intodashingfrom
jacob/redo_151

Conversation

@jacobperron
Copy link
Contributor

This builds on #151.

Switching from java.util.List to arrays significantly improves performance when converting from C to Java types.
Though, for some applications it is still nice to use a list so I've added a convenience methods for getting and setting the value as a List (df08714). I've still opted for having the default getter method return an array type to encourage users to use arrays, since converting to a List is not very efficient.

Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment