GlimmerLabs / louDBus

A D-Bus Client Library for Racket
GNU Lesser General Public License v3.0
5 stars 5 forks source link

Add support for arrays of bytes #12

Open rebelsky opened 11 years ago

rebelsky commented 11 years ago

Arrays of bytes are a special case - we don't want to convert them to lists (at least not if they are large) since our primary goal is to make the data fast to work with, and converting to a list is slow.

rebelsky commented 11 years ago

Step one: Added support to read arrays of bytes from the server. Done.