8 bool gp::Units::Add(std::string
name,
double value) {
9 return Add(std::move(name), value,
Position());
16 bool gp::Units::Find(
const std::string&
name,
double& result)
const {
18 if ( !Find(name,r) )
return false;
23 bool gp::Units::Find(
const std::string&
name,
25 auto it = units_.find(name);
26 if (it == units_.end())
return false;
Container::mapped_type ValueWithPosition