method
unpack
v2_1_10 -
Show latest stable
- Class:
Fiddle::Packer
unpack(ary)public
No documentation available.
# File ext/fiddle/lib/fiddle/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