Object
# File dl/lib/dl/stack.rb, line 5 def Stack.[](*types) Stack.new(types) end
# File dl/lib/dl/stack.rb, line 9 def initialize(types) parse_types(types) end
# File dl/lib/dl/stack.rb, line 21 def pack(ary) case SIZEOF_VOIDP when SIZEOF_LONG ary.pack(@template).unpack('l!*') when SIZEOF_LONG_LONG ary.pack(@template).unpack('q*') else raise(RuntimeError, "sizeof(void*)?") end end
# File dl/lib/dl/stack.rb, line 13 def size() @size end
# File dl/lib/dl/stack.rb, line 17 def types() @types end
# File dl/lib/dl/stack.rb, line 32 def unpack(ary) case SIZEOF_VOIDP when SIZEOF_LONG ary.pack('l!*').unpack(@template) when SIZEOF_LONG_LONG ary.pack('q*').unpack(@template) else raise(RuntimeError, "sizeof(void*)?") end end
This page was generated for Ruby 1.9.1
Ruby-doc.org is a service of James Britt and Neurogami, purveyors of fine dance noise.
Generated with Ruby-doc Rdoc Generator 0.44.0.