yardToRod method

double yardToRod(
  1. double yards
)

Implementation

double yardToRod(double yards) {
  // Replace with the appropriate conversion factor if known
  return yards; // Currently set to the same value (unknown conversion)
}