ratFrom function

RatNumeral ratFrom(
  1. int n,
  2. int d
)

Implementation

RatNumeral ratFrom(int n, int d) => RatNumeral(Rat.fromInts(n, d));