サーチ…


構文

  • closure.curry(パラメータ)
  • closure.rcurry(パラメータ)
  • closure.ncurry(インデックス、パラメータ...)

備考

  • クロージャをカリングすると、そのクロージャの1つ以上が固定値を持つ新しいクロージャが生成されます

  • パラメタを持たないクロージャを左または右にカリングし、パラメタが2つ未満のクロージャをカリングしてインデックスを作成すると、 IllegalArgumentExceptionスローされますIllegalArgumentException

左カリング

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

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

右カリン

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

インデックスベースのカリング

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

明示的なパラメータなしでクロールを終了する

  def noParam = { 
      "I have $it"
  }

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

パラメータなしでクロールを終了する

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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow