func mul()

in Sources/_TestSupport/DoubleWidth.swift [341:344]


    func mul(_ x: Low, _ y: Low) -> (partial: Low, carry: Low) {
      let (high, low) = x.multipliedFullWidth(by: y)
      return (low, high)
    }