Class: Omnizip::Algorithms::Zstandard::FSE::State
- Inherits:
-
Struct
- Object
- Struct
- Omnizip::Algorithms::Zstandard::FSE::State
- Defined in:
- lib/omnizip/algorithms/zstandard/fse/table.rb
Overview
FSE state entry for decoding table
Each entry contains:
- symbol: The symbol this state decodes to
- num_bits: Number of bits to read for next state
- baseline: Value to add to next state's value
Instance Attribute Summary collapse
-
#baseline ⇒ Object
Returns the value of attribute baseline.
-
#num_bits ⇒ Object
Returns the value of attribute num_bits.
-
#symbol ⇒ Object
Returns the value of attribute symbol.
Instance Attribute Details
#baseline ⇒ Object
Returns the value of attribute baseline
33 34 35 |
# File 'lib/omnizip/algorithms/zstandard/fse/table.rb', line 33 def baseline @baseline end |
#num_bits ⇒ Object
Returns the value of attribute num_bits
33 34 35 |
# File 'lib/omnizip/algorithms/zstandard/fse/table.rb', line 33 def num_bits @num_bits end |
#symbol ⇒ Object
Returns the value of attribute symbol
33 34 35 |
# File 'lib/omnizip/algorithms/zstandard/fse/table.rb', line 33 def symbol @symbol end |