HKUnit.swift 331 B

1234567891011121314151617
  1. //
  2. // HKUnit.swift
  3. // xDripG5
  4. //
  5. // Created by Nate Racklyeft on 8/6/16.
  6. // Copyright © 2016 Nathan Racklyeft. All rights reserved.
  7. //
  8. import HealthKit
  9. extension HKUnit {
  10. static let milligramsPerDeciliter: HKUnit = {
  11. return HKUnit.gramUnit(with: .milli).unitDivided(by: HKUnit.literUnit(with: .deci))
  12. }()
  13. }