method
unpack
v1_9_3_392 -
Show latest stable
- Class:
DL::Packer
unpack(ary)public
No documentation available.
# File ext/dl/lib/dl/pack.rb, line 89
def unpack(ary)
case SIZEOF_VOIDP
when SIZEOF_LONG
ary.join().unpack(@template)
when SIZEOF_LONG_LONG
ary.join().unpack(@template)
else
raise(RuntimeError, "sizeof(void*)?")
end
end