method

unpack

ruby latest stable - Class: Fiddle::Packer
unpack(ary)
public

No documentation available.

# File ext/fiddle/lib/fiddle/pack.rb, line 90
    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