Class: Ucode::Aggregator::BlockSummary
- Inherits:
-
Struct
- Object
- Struct
- Ucode::Aggregator::BlockSummary
- Defined in:
- lib/ucode/aggregator.rb
Overview
Summary of how many codepoints of one block are present in a given input set. Plain Struct — Ruby’s built-in ‘to_h` covers any serialization needs.
Instance Attribute Summary collapse
-
#complete ⇒ Object
Returns the value of attribute complete.
-
#covered ⇒ Object
Returns the value of attribute covered.
-
#fill_ratio ⇒ Object
Returns the value of attribute fill_ratio.
-
#first_cp ⇒ Object
Returns the value of attribute first_cp.
-
#last_cp ⇒ Object
Returns the value of attribute last_cp.
-
#name ⇒ Object
Returns the value of attribute name.
-
#total ⇒ Object
Returns the value of attribute total.
Instance Attribute Details
#complete ⇒ Object
Returns the value of attribute complete
16 17 18 |
# File 'lib/ucode/aggregator.rb', line 16 def complete @complete end |
#covered ⇒ Object
Returns the value of attribute covered
16 17 18 |
# File 'lib/ucode/aggregator.rb', line 16 def covered @covered end |
#fill_ratio ⇒ Object
Returns the value of attribute fill_ratio
16 17 18 |
# File 'lib/ucode/aggregator.rb', line 16 def fill_ratio @fill_ratio end |
#first_cp ⇒ Object
Returns the value of attribute first_cp
16 17 18 |
# File 'lib/ucode/aggregator.rb', line 16 def first_cp @first_cp end |
#last_cp ⇒ Object
Returns the value of attribute last_cp
16 17 18 |
# File 'lib/ucode/aggregator.rb', line 16 def last_cp @last_cp end |
#name ⇒ Object
Returns the value of attribute name
16 17 18 |
# File 'lib/ucode/aggregator.rb', line 16 def name @name end |
#total ⇒ Object
Returns the value of attribute total
16 17 18 |
# File 'lib/ucode/aggregator.rb', line 16 def total @total end |