Method: Magick::RVG::Styles#each_value
- Defined in:
- lib/rvg/stylable.rb
#each_value ⇒ Object
Iterate over the style names. Yield for each style that has a value.
38 39 40 41 42 |
# File 'lib/rvg/stylable.rb', line 38 def each_value each_pair do |style, value| yield(style, value) if value end end |