Method: LZ4::BlockDecoder#initialize
- Defined in:
- ext/blockapi.c
#initialize ⇒ Object #initialize(preset_dictionary) ⇒ Object
824 825 826 827 828 829 830 831 832 |
# File 'ext/blockapi.c', line 824
static VALUE
blkdec_init(int argc, VALUE argv[], VALUE dec)
{
struct blockdecoder *p = getdecoder(dec);
blkdec_setup(argc, argv, Qnil, p);
return dec;
}
|