Ricerca…


Sintassi

  • closure.curry (parametro)
  • closure.rcurry (parametro)
  • closure.ncurry (index, parameters ...)

Osservazioni

  • Il processo di chiusura di una chiusura produce una nuova chiusura con uno o più parametri che hanno un valore fisso

  • Sinistra o destra che IllegalArgumentException una chiusura che non ha parametri o indici basati su una chiusura che ha meno di due parametri genera un IllegalArgumentException

Lasciato currying

def pow = { base, exponent ->
    base ** exponent
}
assert pow(3, 2) == 9

def pow2 = pow.curry(2) //base == 2
assert pow2(3) == 8

Giusto currying

def dividable = { a, b ->
    a % b == 0
}
assert dividable(2, 3) == false
assert dividable(4, 2) == true

def even = dividable.rcurry(2) // b == 2
assert even(2) == true
assert even(3) == false

Indice basato sul curriculum

def quatNorm = { a, b, c, d ->
    Math.sqrt(a*a + b*b + c*c + d*d)
}
assert quatNorm(1, 4, 4, -4) == 7.0

def complexNorm = quatNorm.ncurry(1, 0, 0) // b, c == 0
assert complexNorm(3, 4) == 5.0

Chiusura currying senza parametri espliciti

  def noParam = { 
      "I have $it"
  }

  def noParamCurry = noParam.curry(2)
  assert noParamCurry() == 'I have 2'

Chiusura currying senza parametri

def honestlyNoParam = { ->
    "I Don't have it"
}

// The following all throw IllegalArgumentException
honestlyNoParam.curry('whatever')
honestlyNoParam.rcurry('whatever')
honestlyNoParam.ncurry(0, 'whatever')


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow