Class: Zstandard::FFIBindings::ZSTD_parameters

Inherits:
FFI::Struct
  • Object
show all
Defined in:
lib/zstandard/ffi_bindings.rb

Instance Method Summary collapse

Instance Method Details

#[](member) ⇒ Object

<= v0.5.x

Parameters:

  • (:srcSize, :windowLog, :contentLog, :hashLog, :searchLog, :searchLength, :targetLength, :strategy)


201
202
203
204
205
206
207
208
209
210
# File 'lib/zstandard/ffi_bindings.rb', line 201

layout(
  :srcSize,      :uint64,
  :windowLog,    :uint32,
  :contentLog,   :uint32,
  :hashLog,      :uint32,
  :searchLog,    :uint32,
  :searchLength, :uint32,
  :targetLength, :uint32,
  :strategy,     :ZSTD_strategy
)