NSUnitDispersion implementation

This commit is contained in:
Gregory John Casamento 2019-10-06 23:59:27 -04:00
parent 947b9f3a3f
commit 372e0a09d1

View file

@ -447,7 +447,14 @@
@implementation NSUnitDispersion
// Base unit - partsPerMillion
+ (NSUnitDispersion *) partsPerMillion { return nil; }
+ (NSUnitDispersion *) partsPerMillion
{
NSUnitDispersion *result = [[NSUnitDispersion alloc] initWithSymbol: @"ppm"
coefficient: 1.0
constant: 0.0];
return result;
}
@end