adjoin.adjoin

  1. auto adjoin(Args args)
    template adjoin(fun...)
    static if(fun.length != 1)
    static if(Filter!(_needNary, fun).length == 0)
    adjoin
    (
    Args...
    )
    (
    auto ref Args args
    )
    if (
    fun.length &&
    fun.length <= 26
    )
  2. alias adjoin = .adjoin!(staticMap!(naryFun, fun))
  3. alias adjoin = naryFun!(fun[0])

Meta