---------------------------------------------------------------------- This is the API documentation for the gdtest_ref_single_section library. ---------------------------------------------------------------------- ## Complete API All functions alpha(x: int) -> int Apply the alpha transformation. Parameters ---------- x : int The input value. Returns ------- int The transformed value. Examples -------- >>> alpha(5) 10 beta(x: int) -> int Apply the beta transformation. Parameters ---------- x : int The input value. Returns ------- int The transformed value. Examples -------- >>> beta(5) 25 gamma(x: int, y: int) -> int Combine two values using the gamma operation. Parameters ---------- x : int The first input value. y : int The second input value. Returns ------- int The combined result. Examples -------- >>> gamma(3, 4) 7 delta(x: int) -> float Compute the delta of a value. Parameters ---------- x : int The input value. Returns ------- float The delta result. Examples -------- >>> delta(10) 5.0