Module: Fiddle::BasicTypes
| Relationships & Source Files | |
| Defined in: | lib/fiddle/types.rb |
Overview
Adds basic type aliases to the including class for use with Importer.
The aliases added are uint and u_int (unsigned int) and ulong and u_long (unsigned long)
Class Method Summary
- .included(m) mod_func Internal use only
Class Method Details
.included(m) (mod_func)
This method is for internal use only.
[ GitHub ]
# File 'lib/fiddle/types.rb', line 63
def included(m) # :nodoc: m.module_eval{ typealias "uint", "unsigned int" typealias "u_int", "unsigned int" typealias "ulong", "unsigned long" typealias "u_long", "unsigned long" } end