Class: Unitwise::Prefix
Overview
A prefix can be used with metric atoms to modify their scale.
Class Method Summary collapse
-
.data ⇒ Object
The data loaded from the UCUM spec files.
-
.data_file ⇒ Object
The location of the UCUM spec prefix data file.
Methods inherited from Base
all, find, #names=, #slugs, #to_s
Class Method Details
.data ⇒ Object
The data loaded from the UCUM spec files
8 9 10 11 |
# File 'lib/unitwise/prefix.rb', line 8 def self.data f = File.open(data_file) @data ||= ::YAML.respond_to?(:unsafe_load) ? ::YAML.unsafe_load(f) : ::YAML.load(f) end |