Logo

Programming-Idioms

  • Rust
  • Scala

Idiom #37 Currying

Transform a function that takes multiple arguments into a function for which some of the arguments are preset.

def add(x: Int, y: Int) = x + y
def add5 = add(5, _)
val seven = add5(2)
def add(x: Int)(y: Int) = x + y
val add5 = add(5)_

With multiple parameter lists. (add5 takes the 1 parameter of the other parameter list)
fn add(a: u32, b: u32) -> u32 {
    a + b
}

let add5 = move |x| add(5, x);
 
(def rev-key #(update %2 %1 reverse))

(def rev-a (partial rev-key :a))

New implementation...
< >
Adrian