Created
February 17, 2011 22:38
-
-
Save zeroeth/832896 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MyItems | |
| # This will read in only 3 ints | |
| array :fixed_length_array, :initial_length => 3 do | |
| uint8 | |
| end | |
| # This will read in each unit and pass it to the lambda until its value is 5 | |
| array :variable_length_array, :read_until => lambda { element != 5 } do | |
| uint8 | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment